26 lines
504 B
PHP
26 lines
504 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TravelCountry extends Model
|
|
{
|
|
//use the connection to sec. Datebase sterntours
|
|
protected $connection = 'mysql_stern';
|
|
|
|
protected $table = 'travel_country';
|
|
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'html_information',
|
|
];
|
|
|
|
public $timestamps = false;
|
|
|
|
public function travel_program_country()
|
|
{
|
|
return $this->hasOne('App\Models\TravelProgramCountry', 'country_id', 'id');
|
|
}
|
|
}
|