11 lines
352 B
PHP
11 lines
352 B
PHP
@extends('layout.index', [
|
|
'title' => __('Botanic.families.title'),
|
|
'subtitle' => __('Botanic.families.list'),
|
|
'breadcrumb' => [__('Botanic.families.title')]
|
|
])
|
|
|
|
@section('content')
|
|
@component('components.card')
|
|
@include('components.datatable', ['route' => route('Botanic.Admin.Families.index'), 'model' => 'families'])
|
|
@endcomponent
|
|
@endsection |