@extends('Dashboard.layouts.app') @section('style') @endsection @section('search') @endsection @section('delivery_service_active','active') @section('main_content')

Delivery Service List

@forelse($services as $key=>$service) @empty @endforelse
ID Service Action Created At
{{ ($services->currentPage() - 1) * $services->perPage() + $key + 1 }} {{ $service->name }} @include('Dashboard.DeliveryService.edit')
@csrf @method("DELETE")
{{ $service->created_at->diffForHumans() }}
{{ $services->links() }}
@endsection @section('script') @endsection