{{-- navbar - side --}}
@include('admin.layouts.nav')
{{ __('Blacklists') }}
@if(Request::exists('search'))
@else
@endif
| {{ __('WhatsApp No') }} |
{{ __('User') }} |
{{ __('Description') }} |
{{ __('Created On') }} |
{{ __('Actions') }} |
@forelse ($blacklists as $blacklist)
| {{ $blacklist->whatsapp_no }} |
@if (isset($blacklist->user))
{{ $blacklist->user->name }}
({{ $blacklist->user->id }})
@if ($blacklist->user->user_type == 0)
Client
@else
Captain
@endif
@else
N/A
@endif
|
{{ $blacklist->description }} |
{{ \Carbon\Carbon::parse($blacklist->created_at)->toDayDateTimeString() }} |
|
@empty
|
{{ __('Looks like there\'s a VOID!') }}
|
@endforelse
{{ $blacklists->withQueryString()->render("pagination::bootstrap-5") }}
@endsection
@extends('admin.layouts.footer')