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