'Habilitado', self::STATUS_DISABLED => 'Deshabilitado', ]; /** * List of names for each status. * @var array */ public static $statusListClass = [ self::STATUS_ENABLED => 'success', self::STATUS_DISABLED => 'warning', ]; /** * The table associated with the model. * * @var string */ protected $table = 'sat_banco'; /** * The attributes that are mass assignable. * * @var string[] */ protected $fillable = [ 'c_banco', 'descripcion', 'razon_social', 'rfc', 'status', ]; }