1
Guys I’m having a doubt, I’m a beginner in Laravel I’m using Laragon as a virtual host to open the projects in the browser, but to hear of a Docker I researched about it and it seemed to me the same thing that the Laragon more I’m not sure anyone knows if that’s even if the two are the same thing which is best to use?
$this->group(['middleware' => ['auth'], 'namespace' => 'Admin', 'prefix' => 'admin'], function(){
$this->any('historico-search', 'BalanceController@searchHistorico')->name('historico.search');
$this->get('historico', 'BalanceController@historico')->name('admin.historico');
$this->post('transfer', 'BalanceController@transferStore')->name('transfer.store');
$this->post('confirm-transfer', 'BalanceController@confirmTransfer')->name('confirm.transfer');
$this->get('transfer', 'BalanceController@transfer')->name('balance.transfer');
$this->post('withdraw', 'BalanceController@withdrawStore')->name('balance.withdraw');
$this->get('withdraw', 'BalanceController@withdraw')->name('withdraw.store');
$this->post('deposito', 'BalanceController@depositoStore')->name('deposito.store');
$this->get('deposito', 'BalanceController@deposito')->name('balance.deposito');
$this->get('balance', 'BalanceController@index')->name('admin.balance');
$this->get('/', 'AdminController@index')->name('admin.home');
});
And what would be the relationship of this route code to your question?
– Woss
It seems that the question is different from the context ... ? lacked something to explain?
– novic