feat: implement module generator with automated migration, model, and view creation

This commit is contained in:
Ümit Tunç
2026-04-28 23:45:00 +03:00
parent afc047b0bb
commit 74901dc3c6
7 changed files with 125 additions and 156 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Products extends Model
{
use SoftDeletes;
protected $table = 'products';
protected $guarded = [];
}