@extends('layouts.app') @section('content')

Locked Accounts

@forelse ($accounts as $account) @empty @endforelse
Card Number First Name Last Name Birthday Card Type Status Action
{{ $account['card_number'] ?? 'N/A' }} {{ $account['firstname'] ?? 'N/A' }} {{ $account['lastname'] ?? 'N/A' }} {{ $account['birthdate'] ? \Carbon\Carbon::parse($account['birthdate'])->format('d-M-Y') : 'N/A' }} {{ $account['card_type'] ?? 'N/A' }} {{ $account['status'] == 'locked' ? 'Locked' : 'Locked' }} View
No locked accounts found.
@endsection