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