DONE: add export customer info feature, fix floating point issue in komuditi

This commit is contained in:
ISMAIL MASSERAN
2026-09-06 12:39:32 +08:00
parent 9fbcf86325
commit 834556b65d
5 changed files with 698 additions and 0 deletions
+5
View File
@@ -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');