@extends('layouts.main') @section('container')
Buat Order
@php $options = [ 'status' => [ "" => "Semua", "cancel" => "Dibatalkan", "unpaid" => "Belum Bayar", "paid" => "Terbayar", ] ]; $headers = json_encode([ '#No'=> 'no', 'Nama' => 'customer_name', 'Invoice' => 'invoice', 'Total' => 'grand_total_rupiah', 'Status' => 'status', 'Tanggal Dibuat' => 'created_at', '#' => 'action' ]); @endphp
@endsection