@extends("layouts.app") @section('title', 'Statement') @section("main")
| Description | Type | Amount | Balance | Date |
|---|---|---|---|---|
| {{ $statement->description }} | @php $typeClass = ""; switch($statement->type) { case "Credit": $typeClass = "bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-300"; break; case "Debit": $typeClass = "bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-300"; break; default: $typeClass = "bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300"; break; } @endphp {{ $statement->type }} | {{ $currency->icon }}{{ $statement->amount * $currency->rate }} | {{ $currency->icon }}{{ $statement->balance * $currency->rate }} | {{ $statement->created_at->format("d M Y") }} |
| No statements found. | ||||