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()
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -112,7 +112,7 @@ class LoanOrderController extends Controller
|
||||
});
|
||||
|
||||
return response()->json([
|
||||
'message' => __('Successfully updates'),
|
||||
'message' => __('Successfully updated'),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
@@ -8,6 +8,6 @@ class VisaMasterPaymentOrderController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
|
||||
return response()->json();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user