@extends('layouts.master') @section('title') {{ __('sentence.All Patients') }} @endsection @section('content')
{{ __('sentence.All Patients') }}
@foreach($patients as $patient) @endforeach
ID {{ __('sentence.Patient Name') }} {{ __('sentence.Age') }} {{ __('sentence.Phone') }} {{ __('sentence.Blood Group') }} Alergias Cirugías APP APF {{ __('sentence.Date') }} {{ __('sentence.Actions') }}
{{ $patient->id }} {{ $patient->name }} {{ \Carbon\Carbon::parse($patient->Patient->birthday)->age }} {{ $patient->Patient->phone }} {{ $patient->Patient->blood }} {{ $patient->Patient->alergias }} {{ $patient->Patient->cirugias }} {{ $patient->Patient->app }} {{ $patient->Patient->apf }}
{{ $patients->links() }}
@endsection