@extends('layouts.main') @section('title') Pesanan @endsection @push('styles') @endpush @section('container')
Tabel Pesanan
@foreach ($pesanan as $item) @endforeach
No Nama Pelanggan Produk Harga Produk Qty Total Harga Status Status Pemesanan Bukti Pembayaran Bukti Pelunasan Aksi
{{ $loop->iteration }} {{ $item->user->name }} {{ $item->produk->nama }} Rp. {{ number_format($item->produk->harga, 0, ',', '.') }} {{ $item->qty }} Rp. {{ number_format($item->grand_total, 0, ',', '.') }} {{ $item->status }} @if ($item->pengiriman === 'ambil sendiri')
Ambil Sendiri
@else
Dikirim
@endif
@if ($item->status_pembayaran === 'dp' && !is_null($item->bukti_pelunasan)) @else

-

@endif
@if ($item->status === 'proses') @endif
{{-- modal info --}} @foreach ($pesanan as $item) @endforeach {{-- modal bukti --}} @foreach ($pesanan as $item) @endforeach {{-- modal bukti --}} @foreach ($pesanan as $item) @endforeach {{-- modal update --}} @foreach ($pesanan as $item) @endforeach {{-- modal bahan --}} {{-- modal bahan --}} @foreach ($pesanan as $item) @endforeach @endsection @push('scripts') @endpush