@extends('layouts.main')
@section('title', 'Transactions')
@section('content')
Transaction
| Name
|
Amount |
Transaction Type |
Date
|
Updated At |
Action |
@forelse ($transactions as $transaction)
| {{ $transaction->name }} |
${{ number_format($transaction->amount, 2) }} |
{{ $transaction->type }}
|
{{ \Carbon\Carbon::parse($transaction->date)->format('Y - m - d') }} |
{{ $transaction->updated_at->format('Y - m - d') }} |
|
@empty
| No transactions found. |
@endforelse
@endsection