mein-sterntours/app/Models/TravelNationality.php
Kevin Adametz c0c2a1822c Fewos in CRM,
Fewo Clients Bookings
create / edit / delelte
via API in DB
2019-03-28 14:53:16 +01:00

32 lines
816 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* App\Models\TravelNationality
*
* @property int $id
* @property string|null $name
* @property int|null $active
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\TravelNationality whereActive($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\TravelNationality whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\TravelNationality whereName($value)
* @mixin \Eloquent
*/
class TravelNationality extends Model
{
//use the connection to sec. Datebase sterntours
protected $connection = 'mysql_stern';
protected $table = 'travel_nationality';
protected $fillable = [
'name',
'active',
];
public $timestamps = false;
}