Получение данных, связанных с несколькими моделями - PullRequest
0 голосов
/ 27 октября 2019

Мне нужна помощь с отношениями Ларавелла. У меня есть несколько моделей, и я хочу получить результаты одного связанного через другие.

Первая модель: Ветвь

class Branch extends Model
{
    protected $table = 'branches';
    protected $primaryKey = 'id';
    public $timestamps = false;
    protected $fillable = ['name'];
}

Вторая модель: Пользователь

class User extends Authenticatable
{
    use Notifiable;

    protected $fillable = [
        'name', 'email', 'password',
    ];

    protected $hidden = [
        'password', 'remember_token',
    ];

    protected $casts = [
        'email_verified_at' => 'datetime',
    ];

    public function branches() {
        return $this->belongsToMany('App\Branch');
    }
}

Существует сводная таблица branch_user

Третья модель: Автомобили

class Cars extends Model
{
    protected $table = 'cars';
    protected $primaryKey = 'car_id';
    protected $fillable = ['car_model_id', 'car_make_id', 'car_modification_id', 'car_registration', 'car_vin', 'owner', 'phone', 'branch_id'];

    public function make() {
        return $this->hasOne('App\CarMakes', 'car_make_id', 'car_make_id');
    }

    public function model() {
        return $this->hasOne('App\CarModels', 'car_model_id', 'car_model_id');
    }

    public function modification() {
        return $this->hasOne('App\CarModifications', 'car_modification_id', 'car_modification_id');
    }

    public function getFullName() {
        return $this->make->name . " " . $this->model->name . " " . $this->modification->name;
    }

    public function branch() {
        return $this->belongsTo('App\Branches', 'branch_id');
    }
}

Здесь я хочу, чтобы все автомобили были доступны пользователю. (Пользователь может иметь несколько назначенных веток).

class CarsController extends Controller
{
    public function __construct() {
        $this->middleware('auth');
    }

    public function index() {
        $cars = Cars::all();
        return View::make('cars.list', ['cars' => $cars]);
    }
}

Надеюсь, вы, ребята, поняли меня. Должен ли я использовать HasManyThrough или есть другой, более правильный способ сделать это?

1 Ответ

0 голосов
/ 28 октября 2019

Вы можете увидеть hasManyThrough отношение в laravel, и оно вас накормит. https://laravel.com/docs/5.8/eloquent-relationships#has-many-through

...