create rahdaran table and factory

This commit is contained in:
2024-12-14 10:19:13 +03:30
parent 598331d1d4
commit a0b40d85dd
6 changed files with 85 additions and 0 deletions

14
app/Models/Rahdaran.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Rahdaran extends Model
{
use HasFactory;
protected $guarded = [];
protected $table = 'rahdaran';
}