@extends('layouts.master') @section('title', 'Edit Container') @php if($container->wastes_qty) { $wastes_qty = $container->wastes_qty; $wastes_qty_data = unserialize($wastes_qty); } else { $wastes_qty_data = array(); } @endphp @section('content') @if(Session::has('success')) {{ Session::get('success') }} @endif @csrf Size Description {{ $container->description }} Image Enable/Disable status == 'enable' ? 'checked' : '' }} > Waste Types @if($wastes) @foreach($wastes as $waste) {{ $waste->name }} : Total Qty Available Qty @endforeach @endif @endsection @section('pageJS') @endsection