@extends('layout')
@section('header')
@endsection
@section('content')
@if($trays->count())
ID |
REFRIGERATOR_ID |
POSITION |
OPTIONS |
@foreach($trays as $tray)
{{$tray->id}} |
{{$tray->refrigerator_id}} |
{{$tray->position}} |
View
Edit
|
@endforeach
{!! $trays->render() !!}
@else
Empty!
@endif
@endsection