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