@extends('layouts.admin') @section('page-title', 'Services') @section('content')

Service Deliveries

@if(session('success'))
{{ session('success') }}
@endif Add New Service
@forelse($services as $key => $service) @empty @endforelse
Sr No. Title Category Description Button Link Order No Image Actions
{{ $key + 1 }}
{{ $service->title ?? '-' }}
{{ $service->category ?? '-' }}
{{ \Illuminate\Support\Str::words($service->description ?? '-', 30, '...') }}
{{ $service->button_link ?? '-' }} {{ $service->order_no ?? '-' }} @if($service->image) @else - @endif
Edit
@csrf @method('DELETE')
No services found
@endsection