@extends('voyager::master') @section('page_title', 'BlackList') @section('page_header') @stop @section('content') @include('_partials.alerts')
@foreach ($blackLists as $blackList) @endforeach
SN Name National Id Contact No Cr Number Passport Number Status Extra Column Action
{{ $loop->index + 1 }} {{ $blackList->name ?? '' }} {{ $blackList->national_id ?? '' }} {{ $blackList->contact_no ?? '' }} {{ $blackList->cr_number ?? '' }} {{ $blackList->passport_number ?? '' }}
{{ \App\Enums\Status::getStr($blackList->status) }}
@if(hasPermission('approval', 'BlackList') && checkAndReturnValue($blackList,'is_approval_needed')==true) Reject Approve @endif @if(hasPermission('edit','BlackList')) @endif @if(hasPermission('read','BlackList')) @endif @if(hasPermission('delete','BlackList'))
@csrf @method('DELETE')
@endif
@stop @section('javascript') @stop