feat: initial laravel install, models, seeders
This commit is contained in:
31
site/app/Models/Wallet.php
Normal file
31
site/app/Models/Wallet.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Wallet extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'wallets';
|
||||
|
||||
protected $dates = ['created_at', 'updated_at'];
|
||||
|
||||
public function walletType()
|
||||
{
|
||||
return $this->hasOne(WalletType::class);
|
||||
}
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->hasOneThrough(User::class, Artist::class);
|
||||
}
|
||||
|
||||
public function artist()
|
||||
{
|
||||
return $this->belongsTo(Artist::class);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user