perabaikan team activity, form inspeksi rap,laporan memo, rap, resume dan penambahan basic data perizinan
This commit is contained in:
25
app/Models/Perizinan.php
Normal file
25
app/Models/Perizinan.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Lpj\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
// use Modules\Lpj\Database\Factories\PerizinanFactory;
|
||||
|
||||
class Perizinan extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'perizinan';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected $guarded = ['id'];
|
||||
|
||||
|
||||
// protected static function newFactory(): PerizinanFactory
|
||||
// {
|
||||
// // return PerizinanFactory::new();
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user