@extends('admin.layouts.app') @section('title', 'Garage Vendors') @section('content')
| # | Garage Name | Address | Contact | Packages | Admins | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ $garage->id }} | {{ $garage->name ?: '—' }} | {{ $garage->address ?: '—' }} | {{ $garage->contact_number ?: '—' }} | @php $activePackages = $garage->subscriptions ->pluck('package') ->filter() ->unique('id') ->values(); @endphp @if($activePackages->isEmpty()) — @else @foreach($activePackages as $package) {{ $package->name }} @endforeach @endif | {{ $garage->admins_count }} Admin(s) | {{ $garage->created_at?->format('d M Y') }} | |
| No garage vendors found. Add the first one. | |||||||