- Creation of controller : CreateProject, for creation of the company works. - Controller : ProjectDatacontroller to manage data of the equipments and installations in general.
17 lines
313 B
PHP
17 lines
313 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CompanyProject extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'company_projects';
|
|
|
|
protected $primaryKey = 'company_projects_id';
|
|
|
|
public $timestamps = false;
|
|
}
|