1234567891011121314151617181920 |
- <?php
- use Illuminate\Support\Facades\Route;
- Route::group(['domain' => env('APP_HOST'), 'prefix' => 'admin/withdraw'],function(){
- Route::get('index', 'WithdrawsController@index')->name('admin.withdraw.index');
- Route::post('index', 'WithdrawsController@index')->name('admin.withdraw.ajax.index');
- Route::get('store','WithdrawsController@store')->name('admin.withdraw.store');
- Route::post('audit','WithdrawsController@audit')->name('admin.withdraw.audit');
- Route::post('store','WithdrawsController@store')->name('admin.withdraw.save');
- Route::post('destroy/{id?}','WithdrawsController@destroy')->name('admin.withdraw.destroy');
- Route::post('destroys','WithdrawsController@destroys')->name('admin.withdraw.destroys');
- Route::get('edit/{id?}','WithdrawsController@edit')->name('admin.withdraw.edit');
- Route::post('update/{id?}','WithdrawsController@update')->name('admin.withdraw.update');
- });
|