@extends('layouts.app') @section('title', 'Expired Licenses Report') @section('breadcrumb') @endsection @section('content')
{{ $licenses->count() }} expired licenses
@foreach($licenses as $lic) @endforeach
License KeyCustomerTypeExpired OnActions
{{ $lic->license_key }} {{ $lic->customer?->company_name }} {{ ucfirst($lic->license_type) }} {{ $lic->expiry_date?->format('d M Y') }} Renew
@endsection