@extends('layouts.master') @section('content')
Back to Dashboard
Add Bin Location
@csrf
@if(Session::has('success'))

{{ Session('success') }}

@endif @if(Session::has('error'))

{{ Session('error') }}

@endif
Bin Locations
@foreach($binLocations as $bin) @endforeach
Code Description Action
{{ $bin->code }} {{ $bin->description }}
@endsection