File: /var/www/html/punjabcabs/app/Waypoint.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Waypoint extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'request_id','coordinates',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'created_at', 'updated_at'
];
/**
* The services that belong to the user.
*/
public function request()
{
return $this->belongsTo('App\UserRequests');
}
/**
* The services that belong to the user.
*/
public function provider()
{
return $this->belongsTo('App\Provider');
}
}