profile update

This commit is contained in:
2025-07-08 13:12:30 +05:00
parent 8a96772634
commit afeefc7aed
6 changed files with 57 additions and 14 deletions

View File

@@ -28,6 +28,7 @@ class CardOrderController extends Controller
CardOrder::query()
->with(['branch', 'cardState', 'cardType'])
->where('user_id', auth()->id())
->latest()
->get()
));
}

View File

@@ -25,6 +25,7 @@ class CardTransactionsController extends Controller
return response()->json(
CardTransaction::query()
->where('user_id', auth()->id())
->latest()
->get()
);
}