13 lines
399 B
PHP
13 lines
399 B
PHP
<?php
|
|
namespace App;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class IeoAllocationCode extends Model
|
|
{
|
|
protected $table = 'ieo_allocation_code';
|
|
protected $fillable = ['project_id','code','amount','used','user_id'];
|
|
|
|
public function project() { return $this->belongsTo(IeoProject::class, 'project_id'); }
|
|
public function user() { return $this->belongsTo(Users::class, 'user_id'); }
|
|
}
|