Membuat tampilan menu master ijin usaha

This commit is contained in:
2024-09-18 11:06:17 +07:00
parent b2b7559ed0
commit 2041b38980
16 changed files with 943 additions and 20 deletions

24
app/Models/IjinUsaha.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
namespace Modules\Lpj\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Modules\Lpj\Database\Factories\IjinUsahaFactory;
class IjinUsaha extends Model
{
use HasFactory;
protected $table = 'ijin_usaha';
/**
* The attributes that are mass assignable.
*/
protected $fillable = ['nama_ijin_usaha'];
// protected static function newFactory(): IjinUsahaFactory
// {
// //return IjinUsahaFactory::new();
// }
}