@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ trans('admin/suppliers/table.suppliers') }}
@parent
@stop
{{-- Page content --}}
@section('content')
@can('delete', App\Models\Supplier::class)
@endcan
@stop
@section('moar_scripts')
@include ('partials.bootstrap-table', ['exportFile' => 'suppliers-export', 'search' => true])
@stop