File: /var/www/html/punjabcabs/app/ContactList.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ContactList extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'user_id', 'contact_name', 'contact_number'
];
/**
* 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 user()
{
return $this->belongsTo('App\User');
}
}