@extends('layout.mainlayout') @section('content')
| Name | Phone | Passport | BRP | Status | Action | |
|---|---|---|---|---|---|---|
| {{ $row->full_name }} | {{ $row->email }} | {{ $row->phone }} | {{ $row->passport_no ?? '-' }} | {{ $row->brp_card_no ?? '-' }} | @if ((int) $row->status === 1) Active @elseif((int) $row->status === 2) Deactivated @else {{ $row->status }} @endif | @can('update-uk-right-to-work') Edit @if ((int) $row->status === 2) Reactivate @endif @endcan @can('delete-uk-right-to-work') @if ((int) $row->status !== 2) Deactivate @endif @endcan |