@extends('layouts.backend.index') @section('title', $label) @section('content')
No. Order : {{ $workorder->number }}
Tanggal : {{ Common::dateFormat($workorder->setdate, 'dd mmmm yyyy') }}
Nama Pelanggan : {{ $workorder->sales->customer->name }}
Total Biaya : {{ 'Rp. ' . number_format($workorder->total, 0, '', '.') }}
Tipe Bahan : {{ $workorder->sales->material->name }}
Keterangan :
{{ $workorder->sales->material_descr }}

@csrf
@php $old = old('termins', []); $duedate = []; $no = 1; @endphp @if (empty($old)) @else @foreach ($old['duedate'] as $index => $d) @php array_push($duedate, $d); $no++; @endphp @endforeach @endif
No Tanggal Jatuh Tempo Total
1
{{ $no }}
@endsection @push('scripts') @endpush