<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $bitrix_id
* @property string $entity_id
* @property string $status_id
* @property string $name
* @property string $created_at
* @property string $updated_at
*/
class BitrixStatuses extends Model
{
protected $fillable = [
'bitrix_id',
'entity_id',
'status_id',
'name',
];
}