mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 20:44:25 +00:00
18 lines
274 B
PHP
18 lines
274 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
|
|
|
|
class Wallet extends AbstractModel
|
|
{
|
|
protected $table = 'wallets';
|
|
|
|
public function company(): HasOne
|
|
{
|
|
return $this->hasOne(Company::class, 'company_id', 'id');
|
|
}
|
|
|
|
}
|