mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 02:44:31 +00:00
14 lines
304 B
PHP
14 lines
304 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BankTaskFile extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'bank_task_files';
|
|
protected $fillable = ['name', 'type', 'extension', 'url', 'banktask_id'];
|
|
}
|