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()
->with('branch', 'cardType')
->where('user_id', auth()->id())
->latest()
->get()
));
}

View File

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

View File

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

View File

@@ -5,6 +5,7 @@ namespace App\Models\Order\Card\CardPin;
use App\Models\Branch\Branch;
use App\Models\Order\Card\CardType;
use App\Models\User;
use App\Repos\Order\Loan\LoanOrderRepo;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
@@ -121,4 +122,15 @@ class CardPin extends Model
{
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([
'message' => __('Successfully updates'),
'message' => __('Successfully updated'),
]);
}

View File

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