@extends('layouts.app') @section('content')

График заказов

@if(hasPermission('schedule-orders.export'))
@csrf @foreach((array) request()->input('filters', []) as $filter => $value) @endforeach @if(request()->filled('s')) @endif
@endif @if(hasPermission('schedule-orders.create')) Добавить заказ @endif
@include('partials.table', [ 'id' => $id, 'header' => $header, 'strings' => $orders, 'routeName' => 'schedule.orders.show', 'routeParam' => 'productionOrder', 'nav' => $nav, ]) @include('partials.pagination', ['items' => $orders]) @endsection