@extends('layouts.app') @section('content')
| ID | Account Number | Client Name | Product Name | Current Balance | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $account->id }} | {{ $account->account_number }} | {{ $account->client->first_name }} {{ $account->client->last_name }} | {{ $account->product_name }} | USD {{ number_format($account->current_balance, 2) }} | {{ ucfirst($account->status) }} | Edit |
| No savings accounts found. | ||||||