@extends('layouts.master', [ 'class' => 'warehouse', 'plugins' => ['datatables' => true] ]) @section('content') @component('components.card_main', [ 'title' => __('warehouse.config_title'), 'description' => __('warehouse.config_descr'), ]) @slot( 'body' ) @endslot @slot('after_body') @component('components.datatable',['text_center'=>false]) @slot('thead') @lang('master.plant') @lang('master.mins') @endslot @slot('tbody') @foreach($plants as $plant) {{$plant->name }} {{ $plant->delay_minutes }} @endforeach @endslot @endcomponent @endslot @endcomponent @endsection @section('app-scripts') @endsection