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