@extends('layouts.master') @section('title', 'All VIP Patients | Proxima - Medical Management app') @section('title-topbar', __('basic.vip patients')) @section('css') @endsection @section('content') @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @endsection
{{ __('basic.dashboard') }} | {{ __('basic.patients') }} | {{ __('basic.all vip patients') }}
{{ __('basic.search filter') }}

get('reco_srch') == 1) checked @endif>
get('reco_srch') == 2) checked @endif>
get('reco_srch') == 3) checked @endif>

@foreach ($specialty as $item)
get('specialty_srch') == $item->id) checked @endif>
@endforeach

@foreach ($branch as $item)
get('branch_srch') == $item->id) checked @endif>
@endforeach

{{ __('basic.reset') }}

{{ __('patientappo.total patients') }} {{ $patients->total() }}

{{ __('basic.sms') }}
@foreach ($patients as $item)

{{ date('d M Y', strtotime($item->receivable->created_at)) }}

{{ $item->receivable->name }}

@if ($item->receivable->branch) {{ $item->receivable->branch->name }} @else No branch @endif

{{ __('patientappo.phone number') }}
{{ $item->receivable->phone_number }}
{{ __('basic.address') }}
{{ $item->receivable->city->name }}, {{ $item->receivable->country->name }}
{{ __('patientappo.age') }}
{{ \Carbon\Carbon::parse($item->receivable->birthday)->diff(\Carbon\Carbon::now())->format('%y Years') }}
{{ __('basic.amount') }}
{{ $item->sums }}
@endforeach
{{ $patients->appends(request()->input())->links() }}
@endsection @section('js') @endsection