@extends('component.app') @section('title', 'Paket') @section('active8', 'active') @section('menu1', 'open') @section('content')

Edit Data Paket

@csrf
@if (Auth::user()->role == 'superadmin')
@else
@endif
*Isi jika mengganti foto
@php $bahan_baku_paket = []; $bahan_baku_paket = App\Models\BahanBakuPaket::where( 'paket_id', $data->id, )->get(); @endphp @foreach ($bahan_baku_paket as $paket) @php $bahan_baku = App\Models\Barang::find($paket->barang_id); @endphp
@csrf @method('POST')

{{ '*' . $paket->barang->nama_barang . '(' . $paket->barang->satuan . ')' }}

@csrf @method('POST')
@endforeach
@endsection @push('js') @endpush