Files
Global-Jain/routes/admin/with_auth/chaturmas.php

21 lines
636 B
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<?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']);
});