DONE: add export customer info feature, fix floating point issue in komuditi
This commit is contained in:
@@ -28,6 +28,10 @@ Route::get('/dummy/borang-batch-pembiayaan-online', function () {
|
||||
return view('dummy.borang_batch_pembiayaan_online');
|
||||
});
|
||||
|
||||
Route::get('/dummy/maklumat-pelanggan', function () {
|
||||
return view('dummy.maklumat_pelanggan');
|
||||
});
|
||||
|
||||
Route::get('/',['as'=>'login','uses'=>'HomeController@index']);
|
||||
|
||||
Route::get('/testtry',function(ImbangdugaServices $imbangduga){
|
||||
@@ -102,6 +106,7 @@ Route::get('/home', 'HomeController@index')->name('home');
|
||||
//Teller
|
||||
Route::get('/pelanggan','CustomersController@index')->middleware('auth','teller');
|
||||
Route::get('/customer_info',['as'=>'customer_info','uses'=>'CustomersController@info'])->middleware('auth','teller');
|
||||
Route::get('/customer/maklumat/cetak',['as'=>'customer.print.maklumat','uses'=>'CustomersController@printMaklumat'])->middleware('auth','teller');
|
||||
Route::get('/gadaian',['as'=>'gadaian','uses'=>'GadaianController@index'])->middleware('auth','teller');
|
||||
Route::get('/daftar_marhun',['as'=>'daftar_marhun','uses'=>'MarhunController@index'])->middleware('auth','teller');
|
||||
Route::get('/penebusan/{norujukan}',['as'=>'penebusan','uses' => 'PenebusanController@index'])->middleware('auth');
|
||||
|
||||
Reference in New Issue
Block a user