@extends('adminlte::page') @section('title', 'Trash Services') @section('content_header')

Deleted Services

All deleted services - you can restore from delete permanently
@stop @section('content')
@if (count($errors) > 0)
Whoops! There were some problems with your input.
@endif @if (session('success'))
{{ session('success') }}
@endif
@foreach ($services as $service) @endforeach
# Title Image Category Featured Status Action
{{ $loop->iteration }} {{ $service->title }}
Deleted: {{ $service->deleted_at->diffForHumans() }}
@if ($service->image) @else @endif {{ $service->category->title ?? 'NA' }} @if ($service->featured) Yes @else No @endif @if ($service->status) Active @else Pending @endif
@csrf @method('delete')
{{-- {{ $services->links() }} --}}
@stop @section('css') @stop @section('js') {{-- hide notifcation --}} {{-- Sucess and error notification alert --}} @stop