16 lines
334 B
PHP
16 lines
334 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Boards;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class BoardFile extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'board_files';
|
||
|
|
protected $fillable = ['post_id', 'file_path', 'file_name', 'file_size', 'file_type'];
|
||
|
|
|
||
|
|
public function post() {
|
||
|
|
return $this->belongsTo(Post::class, 'post_id');
|
||
|
|
}
|
||
|
|
}
|