{!! Form::label('id', 'Id:') !!} {{ $application->id }}
{!! Form::label('type_id', 'Type:') !!} {{ $type != NULL ? $type->name : "" }}
{!! Form::label('app_user_id', 'App User:') !!} {{ $appUser != NULL ? $appUser->name : "" }}
{!! Form::label('mobile_no', 'Mobile No:') !!} {{ $application->mobile_no }}
{!! Form::label('new_mobile_no', 'New Mobile No:') !!} {{ $application->new_mobile_no }}
{!! Form::label('name', 'Name:') !!} {{ $application->name }}
{!! Form::label('dob', 'Date of birth:') !!} {{ $application->dob }}
{!! Form::label('state_id', 'State:') !!} {{ $state != NULL ? $state->name : "" }}
{!! Form::label('city_id', 'City:') !!} {{ $city != NULL ? $city->name : "" }}
{!! Form::label('center_id', 'Center:') !!} {{ $center != NULL ? $center->name : "" }}
{!! Form::label('fitness_center_id', 'Fitness Center:') !!} {{ $fitness_center != NULL ? $fitness_center->name : "" }}
{!! Form::label('is_below_18', 'Below 18:') !!} {{ $application->is_below_18 ? "Yes" : "No" }}
{!! Form::label('name_of_guardian', 'Guardian Name:') !!} {{ $application->name_of_guardian }}
{!! Form::label('relation', 'Relation with applicant:') !!} {{ $application->relation }}
{!! Form::label('is_scooter', 'Scooter:') !!} {{ $application->is_scooter ? "Yes" : "No" }}
{!! Form::label('is_bike', 'Bike:') !!} {{ $application->is_bike ? "Yes" : "No" }}
{!! Form::label('is_lmv', 'Four Wheel:') !!} {{ $application->is_lmv ? "Yes" : "No" }}
{!! Form::label('is_heavy', 'Heavy:') !!} {{ $application->is_heavy ? "Yes" : "No" }}
{!! Form::label('expiry_date', 'Expiry Date:') !!} {{ $application->expiry_date != NULL ? $application->expiry_date : "" }}
{!! Form::label('buyer_aadhar_mobile_no', 'Buyer Aadhar Link Mobile No:') !!} {{ $application->buyer_aadhar_mobile_no != NULL ? $application->buyer_aadhar_mobile_no : "" }}
{!! Form::label('seller_aadhar_mobile_no', 'Seller Aadhar Link Mobile No:') !!} {{ $application->seller_aadhar_mobile_no != NULL ? $application->seller_aadhar_mobile_no : "" }}
{!! Form::label('vehicle_no', 'Vehicle No:') !!} {{ $application->vehicle_no != NULL ? $application->vehicle_no : "" }}
{!! Form::label('status_id', 'Status:') !!} {{ $status != NULL ? $status->name : "" }}
{!! Form::label('assigned_to', 'Assigned To:') !!} {{ $user != NULL ? $user->name : "" }}
{!! Form::label('govt_fees', 'Government Fees:') !!} ₹{{ $application != NULL ? $application->govt_fees : "" }}
{!! Form::label('conv_fees', 'Convenient Fees:') !!} ₹{{ $application != NULL ? $application->conv_fees : "" }}
{!! Form::label('extra_fees', 'Extra Fees:') !!} ₹{{ $application != NULL ? $application->extra_fees : "" }}
{!! Form::label('documents_requested', 'Documents Requested:') !!} {{ $documentsRequested != NULL ? $documentsRequested : "" }}
{!! Form::label('sarathi_app_no', 'Sarathi Application No:') !!} {{ $application != NULL ? $application->sarathi_app_no : "" }}
{!! Form::label('sarathi_otp', 'Sarathi OTP:') !!} {{ $application != NULL ? $application->sarathi_otp : "" }}
{!! Form::label('created_at', 'Created At:') !!} {{ convertToTimezone($application->created_at, "Asia/Kolkata")->format('d-m-Y H:i:s') }}
{!! Form::label('updated_at', 'Updated At:') !!} {{ convertToTimezone($application->updated_at, "Asia/Kolkata")->format('d-m-Y H:i:s') }}