@extends('admin.layouts.app') @section('content')
@if($services->isEmpty()) @else @php $counter = ($services->currentPage() - 1) * $services->perPage() + 1; @endphp @foreach($services as $service) @php $counter++; @endphp @endforeach @endif
Service ID Service Title Created At Control

There are no services to be shown

{{$counter}} {{$service->title}} {{$service->created_at->format('d / m / Y') }}
@csrf @method('DELETE') Edit Show
{{ $services->onEachSide(5)->links() }}
@endsection