@extends('layouts.app') @section('content')
Policies
@foreach ($policies as $policy) @endforeach
Owner Provider Category Product Effectivity Expiration Status Action
@if($policy->is_personnel) {{ $policy->last_name . ', ' . $policy->first_name }} @else {{ $policy->plate . ' - ' . $policy->cr_number }} @endif {{ $policy->company_name }} {{ $policy->category }} {{ $policy->product_name }} {{ $policy->effectivity_date }} {{ $policy->expiration_date }} @if( $now >= $policy->expiration_date) Expired @elseif( $now >= $policy->renewal_date) Renewal @else Active @endif View
@section('script') @endsection @endsection