services()
{
return $this->belongsToMany(Service::class)->withPivot('price');
}
//Service.php
public function employee()
{
return $this->belongsTo(Employee::class);
}
//EmployeeController.php
$employee = Employee::find($id);
$serviceIds = $employee->services()->where('price', '=', 0)->get()->modelKeys();
Даёт ошибку:
Uncaught BadMethodCallException: Method Illuminate\Database\Eloquent\Collection::services does not exist.
Спасибо
у коллекции вроде есть keys();
Обсуждают сегодня