some stan
This commit is contained in:
@@ -5,16 +5,15 @@ namespace App\Modules\Loan\Models;
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Support\Facades\Date;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property int $user_id
|
||||
* @property int $passport_serie
|
||||
* @property int $passport_id
|
||||
* @property int $ account_number
|
||||
* @property Date|null $created_at
|
||||
* @property Date|null $updated_at
|
||||
* @property int $account_number
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
*/
|
||||
class Loan extends Model
|
||||
{
|
||||
@@ -24,7 +23,7 @@ class Loan extends Model
|
||||
/**
|
||||
* User
|
||||
*
|
||||
* @return BelongsTo<User::class>
|
||||
* @return BelongsTo<User, $this>
|
||||
*/
|
||||
public function user(): BelongsTo
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user