ispt4.0_laravel/app/Models/AmbitsEquipment.php
ygbanzato 3db065ae53 updating best practices in project models and controllers, and linking tables.
- Creation of controller : CreateProject, for creation of the company works.
- Controller : ProjectDatacontroller to manage data of the equipments and installations in general.
2023-06-03 19:01:17 +01:00

20 lines
326 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class AmbitsEquipment extends Model
{
use HasFactory;
protected $table = 'ambits_equipments';
protected $primaryKey = 'ambits_equipment_id';
public $timestamps = false;
}