23 lines
427 B
PHP
Executable File
23 lines
427 B
PHP
Executable File
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('general.accessories') }}
|
|
@parent
|
|
@stop
|
|
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
<x-container>
|
|
<x-box>
|
|
<x-table.accessories name="accessories" :route="route('api.accessories.index')" fixed_right_number="3" />
|
|
</x-box>
|
|
</x-container>
|
|
@stop
|
|
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table')
|
|
@stop
|