@extends('layouts.app') @section('content')
Policy
Policy Owner
@if($policy->is_personnel)
First Name
{{ $policy->first_name}} {{ $policy->last_name}}
Remarks

{{ $policy->owner_remarks}}

@else
Plate
{{ $policy->plate . ' - ' . $policy->cr_number }}
{{--
C.R. No.
{{ $policy->cr_number}}
--}}
Remarks

{{ $policy->owner_remarks}}

@endif
Policy Information
Provider

{{ $policy->company_name }}

Category

{{ $policy->category }}

Product

{{ $policy->product_name }}

Policy Number

{{ $policy->policy_number }}

Issuance Date

{{ $policy->issuance_date }}

Effectivity Date

{{ $policy->effectivity_date }}

Renewal Date

{{ $policy->renewal_date }}

Expiration Date

{{ $policy->expiration_date }}

Status

@if( $now >= $policy->expiration_date) Expired @elseif( $now >= $policy->renewal_date) Renewal @else Active @endif

Remarks

{{ $policy->remarks }} {{ $now }}

@endsection @section('script') @endsection