@extends('layouts.app')
@push('styles')
@endpush
@section('content')
@auth
@if (session('status'))
{{ session('status') }}
@endif
| ID |
CID |
Name |
Date of screening |
Mode |
Updated |
Actions |
@forelse ($records as $r)
| {{ $r->id }} |
{{ $r->cid }} |
{{ $r->name }} |
{{ $r->date_of_screening ? $r->date_of_screening->format('d-m-Y') : '' }} |
{{ $r->mode_of_entry }} |
{{ $r->updated_at ? $r->updated_at->format('d-m-Y H:i') : '' }} |
PDF
Edit
New visit
|
@empty
| No records found. |
@endforelse
{{ $records->links() }}
@endauth
@endsection
@push('scripts')
@endpush