mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
25 lines
485 B
PHP
25 lines
485 B
PHP
<?php
|
|
|
|
use VanOns\Laraberg\Models\Block;
|
|
use VanOns\Laraberg\Models\Content;
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'use_package_routes' => true,
|
|
|
|
'middlewares' => ['web', 'auth'],
|
|
|
|
'prefix' => 'laraberg',
|
|
|
|
"models" => [
|
|
"block" => Block::class,
|
|
"content" => Content::class,
|
|
],
|
|
|
|
];
|