You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
882 B
25 lines
882 B
<?php
|
|
|
|
use App\Http\Controllers\CollectionController;
|
|
use App\Http\Controllers\FileController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register API routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| is assigned the "api" middleware group. Enjoy building your API!
|
|
|
|
|
*/
|
|
|
|
// Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
|
|
// return $request->user();
|
|
// });
|
|
|
|
|
|
Route::apiResource('collections',CollectionController::class);
|
|
Route::delete('/collections/{collection}',[CollectionController::class,"destroy"])->withTrashed();
|
|
Route::post('{collection_name}/{?model_name}',[FileController::class,'store']);
|