@extends('layouts.dashboard') @section('title', 'Bin types') @section('content')

Bin types & prices

Add bin type
@foreach ($binTypes as $binType) @endforeach
Name Price Included days Active
{{ $binType->name }} @if (! empty($binType->placeholder_fields)) placeholder @endif ${{ number_format($binType->price, 2) }} {{ $binType->included_hire_days }} {{ $binType->active ? 'Yes' : 'No' }} Edit
@endsection