@extends('layouts.client.layout') @section('title') {{ $website_lang->where('lang_key','appointment_list')->first()->custom_lang }} @endsection @section('client-content')
@include('client.profile.sidebar')

{{ $website_lang->where('lang_key','appointment_list')->first()->custom_lang }}

@foreach ($appointments as $index => $appointment) @endforeach
{{ $website_lang->where('lang_key','serial')->first()->custom_lang }} {{ $website_lang->where('lang_key','lawyer')->first()->custom_lang }} {{ $website_lang->where('lang_key','date')->first()->custom_lang }} {{ $website_lang->where('lang_key','appointment_fee')->first()->custom_lang }} {{ $website_lang->where('lang_key','schedule')->first()->custom_lang }} {{ $website_lang->where('lang_key','payment')->first()->custom_lang }} {{ $website_lang->where('lang_key','action')->first()->custom_lang }}
{{ ++$index }} {{ $appointment->lawyer->name }} {{ date('m-d-Y',strtotime($appointment->date)) }} {{ $currency->currency_icon }}{{ $appointment->appointment_fee }} {{ strtoupper($appointment->schedule->start_time).'-'.strtoupper($appointment->schedule->end_time) }} @if ($appointment->payment_status==0) Pending @else Success @endif @if ($appointment->already_treated==1) @endif
{{ $appointments->links() }}
@endsection