working on omis setup
This commit is contained in:
16
app/Models/Companytypes.php
Normal file
16
app/Models/Companytypes.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Companytypes extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'tbl_companytypes';
|
||||
protected $primaryKey = 'companytype_id';
|
||||
|
||||
protected $guarded = [];
|
||||
}
|
Reference in New Issue
Block a user