@extends('member.template.main')
@section('css')
@endsection
@section('main-content')
| No |
Barang |
Servis |
Harga |
@foreach ($kiloan as $k)
| {{ $loop->iteration }} |
{{ $k->item->name }} |
{{ $k->service->name }} |
{{ $k->getFormattedPrice() }} |
@endforeach
| No |
Barang |
Servis |
Harga |
@foreach ($satuan as $s)
| {{ $loop->iteration }} |
{{ $s->item->name }} |
{{ $s->service->name }} |
{{ $s->getFormattedPrice() }} |
@endforeach
Daftar Tipe Service
| No |
Nama Tipe Service |
Biaya |
@foreach ($serviceTypes as $item)
| {{ $loop->iteration }} |
{{ $item->name }} |
{{ $item->getFormattedCost() }} |
@endforeach
@endsection
@section('scripts')
@endsection