@extends('layouts.app') @section('title', 'Services') @section('content')
@can('services.create') Add Service @endcan
@if(session('success'))
{{ session('success') }}
@endif
@forelse($services as $service) @empty @endforelse
# Name Company Category Status Order Actions
# Name Company Category Status Order
{{ $loop->iteration }} {{ $service->name }} {{ $service->company?->name ?? '—' }} {{ $service->category?->name ?? '—' }} {{ $service->status ? 'Active' : 'Inactive' }} {{ $service->order ?? '-' }} @can('services.edit') Edit @endcan @can('services.delete')
@csrf @method('DELETE')
@endcan
No services found.
@endsection @section('scripts') @endsection