Files
opensem/resources/views/Botanic/Admin/Genres/list.blade.php
2020-04-21 00:09:32 +02:00

23 lines
564 B
PHP

@extends('layout.index', [
'title' => __('Botanic.genres.title'),
'subtitle' => __('Botanic.genres.list'),
'breadcrumb' => [__('Botanic.genres.title')]
])
@section('content')
<div class="row pb-3">
<div class="col text-right">
<a href="{{ route('Botanic.Admin.Genres.create') }}" class="btn btn-sm btn-success">{{ __('Botanic.genres.add') }} <i class="fa fa-plus"></i></a>
</div>
</div>
{{$dataTable->table()}}
@endsection
@push('scripts')
@include('components.js.datatable', ['route' => '/Botanic/Admin/Genres', 'model' => 'genres'])
@endpush