File: /var/www/limestate-admin/app/Models/Agency.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property ?string $name
* @property ?string $address
* @property ?string $email
* @property ?string $phone
* @property ?string $created_at
* @property ?string $updated_at
* @property ?string $logo
* @property ?string $legal_entity
* @property ?string $city
* @property ?string $ceo
* @property ?string $contract_number
* @property ?string $contract_date
*/
class Agency extends Model
{
protected $table = 'agencies';
public $timestamps = false;
protected $fillable = [
'name',
'address',
'email',
'phone',
'created_at',
'updated_at',
'logo',
'legal_entity',
'city',
'ceo',
'contract_number',
'contract_date',
];
}