@extends('front.frontLayout') @section('title',strtoupper(app('request')->input('test'))) @section('content') @php if(app('request')->input('test') == 'lft'){ $test_price = ($covid->price) ? $covid->price : config('app.covid_antigen_price'); } if(app('request')->input('test') == 'pcr'){ $test_price = ($covid->price) ? $covid->price : config('app.covid_rt_pcr_price'); } if(app('request')->input('form_type') == 2){ $qty = 1; }else{ $qty = app('request')->input('quantity'); } $price = $test_price * app('request')->input('quantity'); @endphp

Your Selected Test

Please fill in the questionnaire below to continue adding your test.

@if(app('request')->input('qty_type') == 1 && app('request')->input('quantity') > 1)
@endif
@csrf @for($i=1;$i<=$qty;$i++)
@if(!empty(old('expsymp')) && old('expsymp')[$i-1] == '1') @php $show = "display:block;"; @endphp @else @php $show = "display:none;"; @endphp @endif
@if($qty == $i)
@endif
@if($qty>1) @if($i>1) @endif @if($qty != $i) @else @endif @else @endif
@endfor
@endsection @section('pageleveljs') @if ($errors->any()) @endif @if($message = Session::get('success')) @endif @if($message = Session::get('error')) @endif @stop