add feat upload pbg task
This commit is contained in:
@@ -46,4 +46,8 @@ class PbgTask extends Model
|
||||
{
|
||||
return $this->hasMany(TaskAssignment::class, 'pbg_task_uid', 'uuid');
|
||||
}
|
||||
|
||||
public function attachments(){
|
||||
return $this->hasMany(PbgTaskAttachment::class, 'pbg_task_id', 'id');
|
||||
}
|
||||
}
|
||||
|
||||
14
app/Models/PbgTaskAttachment.php
Normal file
14
app/Models/PbgTaskAttachment.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PbgTaskAttachment extends Model
|
||||
{
|
||||
protected $fillable = ['pbg_task_id', 'file_name', 'file_path', 'pbg_type'];
|
||||
|
||||
public function task(){
|
||||
return $this->belongsTo(PbgTask::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user