13 lines
449 B
PHP
13 lines
449 B
PHP
@extends('layout.index', [
|
|
'title' => __('Botanic.families.title'),
|
|
'subtitle' => __('Botanic.families.list'),
|
|
'breadcrumb' => [__('Botanic.families.title')]
|
|
])
|
|
|
|
@section('content')
|
|
@include('components.datatable', ['route' => route('Botanic.Admin.Families.create'), 'label' => __('Botanic.families.add')])
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
@include('components.js.datatable', ['route' => '/Botanic/Admin/Families', 'model' => 'families'])
|
|
@endpush |