@extends('layouts.app') @push('styles') @endpush @section('content') @auth

Pre-TB records

Search and update visits
@if (session('status'))
{{ session('status') }}
@endif
Reset

@forelse ($records as $r) @empty @endforelse
ID CID Name Date of screening Mode Updated Actions
{{ $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') : '' }} Edit New visit
@csrf @method('DELETE')
No records found.
{{ $records->links() }}
@endauth @endsection