wip
This commit is contained in:
@@ -26,6 +26,7 @@ class CardPinController extends Controller
|
||||
CardPin::query()
|
||||
->with('branch', 'cardType')
|
||||
->where('user_id', auth()->id())
|
||||
->latest()
|
||||
->get()
|
||||
));
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@ class CardRequisiteController extends Controller
|
||||
CardRequisite::query()
|
||||
->with(['cardType', 'branch'])
|
||||
->where('user_id', auth()->id())
|
||||
->latest()
|
||||
->get()
|
||||
));
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@ class LoanOrderRemainingOrderController extends Controller
|
||||
return response()->json(
|
||||
LoanRemainingOrder::query()
|
||||
->where('user_id', auth()->id())
|
||||
->latest()
|
||||
->get()
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user