{!! Form::open(['route' => 'admin::manufacturers::toogleShowManufacturers','class' => 'form-horizontal', 'id' => 'CategoriesShow']) !!}
{!! Form::checkbox('showAll', 1, session('admin.showAllManufacturers'), ['id' => 'showAll', 'onChange' => 'this.form.submit()' ]) !!} {!! Form::label('showAll', trans('Manufacturers::admin/manufacturers/manufacturers.list.showAll')) !!}
{!! Form::close() !!} {!! Form::open(['route' => 'admin::manufacturers', 'class' => 'form-horizontal', 'method' => 'GET', 'id' => 'manufacturers_list_form']) !!} @forelse ($manufacturersList as $manufacturer) @empty @endforelse
{{ trans('Manufacturers::admin/manufacturers/manufacturers.header.name') }} {{ trans('global.options') }}
{!! Form::text('id', request()->input('id') ?? null, [ 'class' => 'form-control', 'placeholder' => trans('Manufacturers::admin/manufacturers/manufacturers.header.id') ]) !!} {!! Form::text('name', request()->input('name') ?? null, [ 'class' => 'form-control', 'placeholder' => trans('Manufacturers::admin/manufacturers/manufacturers.header.name') ]) !!}
{{ $manufacturer->name }}
{{ trans('Manufacturers::admin/manufacturers/manufacturers.list.body.noelements') }}
{!! Form::close() !!} @if ($manufacturersList->isNotEmpty())
@include('admin.layouts.includes.pagination', ['paginator' => $manufacturersList])
@endif @push('footScripts') @endpush