@extends('component.app') @section('title', 'Data Transaksi') @section('active3', 'active') @section('content')

Data Transaksi


@if ($data->count() == 0)
@else @foreach ($data as $transaksi)
Laundry Image
{{ $transaksi->kode_transaksi }}

Tanggal: {{ \Carbon\Carbon::parse($transaksi->tgl_transaksi)->format('d M Y') }}

Pelanggan: {{ $transaksi->pelanggan->nama }}

Rp {{ number_format($transaksi->total_harga, 0, ',', '.') }} Kelola
@endforeach @endif
{{--

Proses

This is the profile section. You can put information about a user or something else here.

Selesai

This is the contact section. You can display contact information or a form here.

--}}
@endsection