@extends('admin.layout.main') @section('admin')
Manage your services and offerings
Total Services
{{ $services->total() }}
Active
{{ \App\Models\Service::active()->count() }}
With Country
{{ \App\Models\Service::whereNotNull('country_id')->count() }}
Without Country
{{ \App\Models\Service::whereNull('country_id')->count() }}
| Service | Image | Price | Country | Status | Order | Created | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $service->name }}
ID: {{ $service->id }}
|
@if($service->image)
|
${{ number_format($service->price, 2) }}
|
@if($service->country)
@if($service->country->image)
@else
No Country
@endif
|
@if($service->is_active) Active @else Inactive @endif |
{{ $service->sort_order }}
|
{{ $service->created_at->format('M j, Y') }}
|
|