@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/manufacturers/table.asset_manufacturers') }} @parent @stop {{-- Page title --}} @section('header_right') @can('create', \App\Models\Manufacturer::class) {{ trans('general.create') }} @endcan @if (Request::get('deleted')=='true') {{ trans('general.show_current') }} @else {{ trans('general.show_deleted') }} @endif @stop {{-- Page content --}} @section('content')
@if ($manufacturer_count == 0)
{{ csrf_field() }}

{{ trans('general.seeding.manufacturers.prompt') }}

@else
@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop