@extends('layouts.master') @section('content') @include('partials.containers-header')
@include('partials.messages_display')

@lang($name.' List')

@include('partials.index-buttons',[ 'model' => $model, 'btns' => 'nest' ])
@if (count($records) > 0) {!! $records->links() !!} @endif
@foreach($records as $record) @include('partials.modal_delete',$record->data) @endforeach
@lang('Name') @lang('Function') @lang('Quantity') @lang('Actions')
{{$record->name}} {{$record->function_name}} {{$record->quantity}} @include('partials.actions-buttons',[ 'model' => $record->data['model'], 'id' => $record->id, 'trashed' => $record->trashed() ])
@include('partials.containers-footer') @endsection @section('search') @include('frequency.search',[ 'record' => null ]) @endsection @push('scripts') @endpush