api code global jain
This commit is contained in:
20
routes/admin/with_auth/sangh.php
Normal file
20
routes/admin/with_auth/sangh.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* Sangh Related Routes.
|
||||
*/
|
||||
|
||||
// Sangh Routes
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\Backend\SanghController;
|
||||
|
||||
Route::group([
|
||||
'middleware' => [],
|
||||
'as' => 'sanghs.',
|
||||
'prefix' => 'sanghs'
|
||||
],
|
||||
function () {
|
||||
Route::get('/', [SanghController::class, 'index'])->name('index');
|
||||
Route::get('/listing', [SanghController::class, 'listing'])->name('listing');
|
||||
Route::get('{id}/show', [SanghController::class, 'show'])->name('show');
|
||||
Route::patch('{id}/update', [SanghController::class, 'update'])->name('update');
|
||||
});
|
||||
Reference in New Issue
Block a user