@extends('layouts.app') @section('content')
@csrf

Search COI No. or Last Name

@if(isset($data))
@forelse($data as $data) @empty @endforelse
COI No.: {{ $data->coi_no }}
Issuing Office: {{ $data->office_description }}
Transaction Date: {{ date('F j, Y h:i A', strtotime($data->created_at)) }}
Assured Name: {{ strtoupper($data->assured_lastname.', '.$data->assured_firstname.' '.$data->assured_middlename. ' '.$data->assured_suffixname) }}
Date of Birth: {{ date('F j, Y', strtotime($data->date_of_birth)) }}
Inception / Expiry Date: {{ date('F j, Y', strtotime($data->inception_date)).' - '.date('F j, Y', strtotime($data->expiry_date)) }}
Reprint

0 results found.

@endif
{{-- --}} @endsection