This commit is contained in:
Ludovic CANDELLIER
2021-04-08 16:18:21 +02:00
parent 8ec6f24df4
commit 098a46f3a0
19 changed files with 313 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Repositories\Botanic\Families;
use App\DataTables\Botanic\FamiliesDataTable;
use App\Datatables\Botanic\FamiliesDataTable;
class FamilyController extends Controller
{

View File

@@ -7,7 +7,7 @@ use App\Http\Controllers\Controller;
use App\Repositories\Botanic\Genres;
use App\Repositories\Botanic\Families;
use App\DataTables\Botanic\GenresDataTable;
use App\Datatables\Botanic\GenresDataTable;
class GenreController extends Controller
{

View File

@@ -7,7 +7,7 @@ use App\Http\Controllers\Controller;
use App\Repositories\Botanic\Species;
use App\Repositories\Botanic\Genres;
use App\DataTables\Botanic\SpeciesDataTable;
use App\Datatables\Botanic\SpeciesDataTable;
class SpecieController extends Controller
{

View File

@@ -8,7 +8,7 @@ use App\Http\Controllers\Controller;
use App\Repositories\Botanic\Varieties;
use App\Repositories\Botanic\Species;
use App\Repositories\Shop\TagGroups;
use App\DataTables\Botanic\VarietiesDataTable;
use App\Datatables\Botanic\VarietiesDataTable;
use App\Models\Shop\Variety;