@extends('layouts.master') @section('title') LT-99 :: ประวัติการทำรายการ @endsection @section('sub_title') ประวัติการทำรายการ @endsection @section('content')

ร้าน : {{ $store->store_name }}

{{-- --}} @foreach ($data as $key => $item) @php if (!$item->amount) continue; @endphp {{-- --}} @endforeach
# จำนวนเงิน สถานะ รายละเอียด วันที่ดำเนินการดำเนินการ
{{ $key + 1 }} {{ ($item->amount >= 0 ? '+' : '') . number_format($item->amount, 2) }}
{{ $item->status === 1 ? 'ปกติ' : 'ยกเลิก' }}
{{ $item->detail }} {{ $item->created_at }}
@endsection @section('scripts') @endsection