This commit is contained in:
2025-09-04 09:59:38 +05:00
parent 772ac9ad0f
commit eefe130ad3
7 changed files with 20 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ class CardPinController extends Controller
CardPin::query() CardPin::query()
->with('branch', 'cardType') ->with('branch', 'cardType')
->where('user_id', auth()->id()) ->where('user_id', auth()->id())
->latest()
->get() ->get()
)); ));
} }

View File

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

View File

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

View File

@@ -5,6 +5,7 @@ namespace App\Models\Order\Card\CardPin;
use App\Models\Branch\Branch; use App\Models\Branch\Branch;
use App\Models\Order\Card\CardType; use App\Models\Order\Card\CardType;
use App\Models\User; use App\Models\User;
use App\Repos\Order\Loan\LoanOrderRepo;
use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsTo;
@@ -121,4 +122,15 @@ class CardPin extends Model
{ {
return 3.02; return 3.02;
} }
/**
* "boot" method for model
*/
protected static function boot()
{
parent::boot();
static::created(LoanOrderRepo::created());
}
} }

View File

@@ -112,7 +112,7 @@ class LoanOrderController extends Controller
}); });
return response()->json([ return response()->json([
'message' => __('Successfully updates'), 'message' => __('Successfully updated'),
]); ]);
} }

View File

@@ -8,6 +8,6 @@ class VisaMasterPaymentOrderController extends Controller
{ {
public function index() public function index()
{ {
return response()->json();
} }
} }

View File

@@ -351,5 +351,7 @@
"Money Balance": "Galyndy", "Money Balance": "Galyndy",
"Start date": "Başlangyç sene", "Start date": "Başlangyç sene",
"End date": "Ahyrky sene", "End date": "Ahyrky sene",
"Expiry date": "Möhleti" "Expiry date": "Möhleti",
"Successfully created": "Üstünlikli döredildi",
"Successfully updated": "Üstünlikli üýtgedildi"
} }