Created django import command

This commit is contained in:
Edward Tirado Jr 2026-04-20 23:38:13 -05:00
parent e38a2b13ed
commit 445bd3b1f7
6 changed files with 322 additions and 0 deletions

15
app/Models/Schedule.php Normal file
View file

@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Schedule extends Model
{
protected $fillable = [
'name',
'is_public',
'slug',
'owner',
];
}