Viewing: home_sections.php
<?php Route::middleware('permission:manage-home-section')->group(function () { Route::get('/admin-homeSection', 'HomeSection\HomeSectionController@index')->name('homeSection'); Route::get('homeSection/create', 'HomeSection\HomeSectionController@create')->name('createHomeSection'); Route::post('homeSection/store', 'HomeSection\HomeSectionController@store')->name('storeHomeSection'); Route::get('homeSection/edit/{id}', 'HomeSection\HomeSectionController@edit')->name('editHomeSection'); Route::post('homeSection/update', 'HomeSection\HomeSectionController@update')->name('updateHomeSection'); Route::post('homeSection/delete', 'HomeSection\HomeSectionController@destroy')->name('deleteHomeSection'); Route::get('homeSection/status/{id}', 'HomeSection\HomeSectionController@status')->name('statusHomeSection'); Route::post('homeSection/updateOrder', 'HomeSection\HomeSectionController@updateOrder')->name('updateOrderHomeSection'); });
Return