databases and models

This commit is contained in:
2026-03-10 02:10:28 -05:00
parent 2fabed958d
commit 31b825a5d5
31 changed files with 2653 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App\Models\Structures;
use Illuminate\Database\Eloquent\Model;
class CitadelServices extends Model
{
// Table Name
protected $table = 'citadel_services';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'structure_id',
'name',
'state',
];
}