@extends('admin/layouts/admin') @section('title', __($translatePrefix .'.title')) @section('content')
@include('admin/shared/alerts')

{{ __($translatePrefix . '.title') }}

{{ __($translatePrefix. '.subheading') }}

@if (!empty($filters))
@endif
@if (count($items) == 0) @endif @foreach($items as $item) @endforeach
#
{{ __('global.name') }}
{{ __('global.service') }}
{{ __('client.services.expire_date') }}
{{ __('global.created') }}
{{ __('global.actions') }}

{{ __('global.no_results') }}

{{ $item->id }} @if ($item->option) {{ $item->option->name }} @else ({{ __('global.deleted') }}) @endif @if ($item->service) {{ $item->service->excerptName() }} @else {{ __('global.deleted') }} @endif {{ $item->created_at->format('d/m/y') }} {{ __('global.show') }}
@method('DELETE') @csrf
{{ $items->links('shared.layouts.pagination') }}
@endsection