39 lines
965 B
PHP
39 lines
965 B
PHP
<?php
|
|
|
|
namespace App\Models\Sym;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
/**
|
|
* App\Models\Sym\TravelCountry
|
|
*
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property int|null $is_customer_country
|
|
* @property int|null $active_backend
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Sym\TravelCountry whereActiveBackend($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Sym\TravelCountry whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Sym\TravelCountry whereIsCustomerCountry($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Sym\TravelCountry whereName($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class TravelCountry extends Model
|
|
{
|
|
|
|
protected $connection = 'mysql';
|
|
|
|
protected $table = 'travel_country';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'is_customer_country',
|
|
'active_backend'
|
|
|
|
];
|
|
|
|
public $timestamps = false;
|
|
|
|
|
|
|
|
}
|