@extends('layouts.master') @section('title', 'Edit Waste Type') @php if($waste->daterange_prices) { $daterange_prices = $waste->daterange_prices; $daterange_prices_data = unserialize($daterange_prices); } else { $daterange_prices_data = array(); } if($waste->container_prices) { $container_prices = $waste->container_prices; $container_prices_data = unserialize($container_prices); } else { $container_prices_data = array(); } @endphp @section('content')
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@csrf
$
{{$waste->extra_hireage_days}} Days
$
1 Day
status == 'enable' ? 'checked' : '' }} >
@if($containers)
@foreach($containers as $container)
$
@endforeach
@endif
$ extra hire per day after days
$ per tonne additional customer charge for weights exceeding allowance of 150kg per cubic metre.

@if($daterange_prices_data) @foreach($daterange_prices_data as $index => $data) @if($index === 0)
@elseif($index === 1)
@endif
$
@if($index !== 0) @endif
@if($index === 0 || ($index === count($daterange_prices_data)-1))
@endif @endforeach @if(count($daterange_prices_data) === 1)
@endif @else
$
@endif
@endsection @section('pageJS') @endsection @section('pageCSS') @endsection