mein-sterntours/app/Models/TravelCountry.php
2018-11-17 02:03:59 +01:00

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');
}
}