@extends('contentNavbarLayout') @section('title', 'Search Records') @section('content')
{{-- Card Header --}}

Search Records

List of documents available for the search criteria

{{-- Card Body --}}
@if($results->count() > 0)
@foreach($results as $record) @endforeach
Record Type ▲▼ Title ▲▼ Created By Created At ▲▼ Details & File
{{ $record->record_type->name ?? '-' }} {{ $record->title ?? '-' }} {{ $record->creator->full_name ?? '-' }} {{ $record->created_at->format('Y-m-d H:i') }}
{{ $results->links() }}
@else

No records found.

@endif
{{-- card-body --}}
{{-- card --}}
@endsection