Skip to content
Snippets Groups Projects
Commit 44790c02 authored by VONDERSCHER William's avatar VONDERSCHER William
Browse files

ajout des modeles de company et theme

parent 59794a15
Branches
No related tags found
No related merge requests found
<?php
class Company
class Company extends \Illuminate\Database\Eloquent\Model
{
}
\ No newline at end of file
protected $table = 'company';
protected $primaryKey='id';
public $timestamps = false;
}
<?php
class Theme
class Theme extends \Illuminate\Database\Eloquent\Model
{
}
\ No newline at end of file
protected $table = 'theme';
protected $primaryKey ='id';
public $timestamps = false;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment