mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 19:04:31 +00:00
модуль Задания(почти готов)
This commit is contained in:
15
app/Models/TaskHistory.php
Normal file
15
app/Models/TaskHistory.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class TaskHistory extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'banktask_task';
|
||||
protected $fillable = ['banktask_id', 'task_id'];
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user