??????????????
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;


use Illuminate\Database\Eloquent\SoftDeletes;

class Saloon extends Model
{

    use SoftDeletes;

    /**
     * The attributes that should be mutated to dates.
     *
     * @var array
     */
    protected $dates = ['deleted_at'];

    protected $table = 'saloon';

    protected $fillable = [
        'city_id',
        'name',
        'address',
        'phone',
        'body',
        'hours',
        'picture',
        'showhide',
        'manager_id',
        'company_id'
    ];

    public function artists()
    {
        return $this->hasMany('App\Artist', 'saloon