43 lines
1.5 KiB
PHP
43 lines
1.5 KiB
PHP
@extends('admin::layout')
|
|
|
|
@component('admin::components.page.header')
|
|
@slot('title', trans('brand::brands.brands'))
|
|
|
|
<li class="active">{{ trans('brand::brands.brands') }}</li>
|
|
@endcomponent
|
|
|
|
@component('admin::components.page.index_table')
|
|
@slot('buttons', ['create'])
|
|
@slot('resource', 'brands')
|
|
@slot('name', trans('brand::brands.brand'))
|
|
|
|
@component('admin::components.table')
|
|
@slot('thead')
|
|
<tr>
|
|
@include('admin::partials.table.select_all')
|
|
|
|
<th>{{ trans('admin::admin.table.id') }}</th>
|
|
<th>{{ trans('brand::brands.table.logo') }}</th>
|
|
<th>{{ trans('brand::brands.table.name') }}</th>
|
|
<th>{{ trans('admin::admin.table.status') }}</th>
|
|
<th data-sort>{{ trans('admin::admin.table.created') }}</th>
|
|
</tr>
|
|
@endslot
|
|
@endcomponent
|
|
@endcomponent
|
|
|
|
@push('scripts')
|
|
<script>
|
|
new DataTable('#brands-table .table', {
|
|
columns: [
|
|
{ data: 'checkbox', orderable: false, searchable: false, width: '3%' },
|
|
{ data: 'id', width: '5%' },
|
|
{ data: 'logo', orderable: false, searchable: false, width: '10%' },
|
|
{ data: 'name', name: 'translations.name', orderable: false, defaultContent: '' },
|
|
{ data: 'status', name: 'is_active', searchable: false },
|
|
{ data: 'created', name: 'created_at' },
|
|
],
|
|
});
|
|
</script>
|
|
@endpush
|