@extends('garage.layouts.app') @section('title', 'Service reminder') @section('content') @php $garageName = trim((string) (($garage->name ?? '') ?: 'Garage')); $fareedMotorsLogoPath = public_path('images/fareed-motors-logo.png'); $useFareedMotorsLogo = is_file($fareedMotorsLogoPath) && stripos($garageName, 'fareed') !== false; $logoUrl = $useFareedMotorsLogo ? asset('images/fareed-motors-logo.png') : null; $fmtDate = function ($d) { if (! $d) return '—'; try { return \Carbon\Carbon::parse($d)->format('d-m-Y'); } catch (\Throwable $e) { return (string) $d; } }; @endphp