You've already forked isop-mirror
26 lines
459 B
PHP
26 lines
459 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Company extends Model
|
|
{
|
|
/** @use HasFactory<\Database\Factories\CompanyFactory> */
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'address',
|
|
'ico',
|
|
'contact',
|
|
'hiring'
|
|
];
|
|
}
|