@extends('layouts.app') @section('title', 'Dashboard') @php $topbarTitle = 'Dashboard'; @endphp @section('app-content')
Rp {{ number_format($myTotalSalesToday, 0, ',', '.') }}
{{ now()->translatedFormat('d M Y') }}
{{ number_format($myTransactionsTodayCount) }}
| {{ __('Invoice') }} | {{ __('Total') }} | {{ __('Date') }} | {{ __('Status') }} |
|---|---|---|---|
| {{ $transaction->invoice_number }} | Rp {{ number_format($transaction->total, 0, ',', '.') }} | {{ $transaction->created_at?->format('d M Y H:i') }} |
@if ($transaction->status->value === 'completed')
check_circle
{{ $transaction->status->label() }}
@else
cancel
{{ $transaction->status->label() }}
@endif
|
| {{ __('No transactions yet.') }} | |||