21 lines
636 B
PHP
21 lines
636 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Chaturmas Related Routes.
|
||
|
|
*/
|
||
|
|
|
||
|
|
use App\Http\Controllers\Backend\ChaturmasDateController;
|
||
|
|
|
||
|
|
// Chaturmas date Routes
|
||
|
|
Route::group(
|
||
|
|
['middleware' => [
|
||
|
|
//
|
||
|
|
]], function () {
|
||
|
|
|
||
|
|
Route::group(['as' => 'chaturmas-date.', 'prefix' => 'chaturmas-date'], function () {
|
||
|
|
Route::get('get-listing', [ChaturmasDateController::class, 'getChaturmasDateListing'])->name('get-listing');
|
||
|
|
Route::post('grid-records-action', [ChaturmasDateController::class, 'gridRecordsAction'])->name('grid.records.action');
|
||
|
|
});
|
||
|
|
|
||
|
|
Route::resource('chaturmas-date', ChaturmasDateController::class)->except(['show']);
|
||
|
|
});
|