1
0
mirror of https://github.com/robonen/education-project.git synced 2026-06-20 10:05:17 +00:00
Files
education-project/app/Models/Task.php
T

14 lines
208 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Task extends Model
{
use HasFactory;
protected $table = 'tasks';
}