1
0
mirror of https://github.com/robonen/education-project.git synced 2026-03-20 19:04:31 +00:00
Files
education-project/app/Models/Parentt.php
2020-12-03 23:33:04 +07:00

18 lines
275 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Validator;
class Parentt extends Model
{
use HasFactory;
protected $guarded = [
'user_id',
];
}