@extends('layouts.main') @section('content')

Services

@can('services_create') @endcan
@forelse($services as $service) @empty @endforelse
# Service Description Price Status Action
#{{ $service->id }} {{ $service->title }} {{ Str::limit($service->description, 60) }} ₹{{ number_format($service->price, 2) }} @if($service->status == 1) Active @else Inactive @endif
@can('services_view_page') @endcan @can('services_edit') @endcan @can('services_delete')
@csrf @method('DELETE')
@endcan
No services found 😔
@endsection