Skip to content

Tag: laravel-4

Laravel Eloquent – Attach vs Sync

What is the difference between attach() and sync() in Laravel 4’s Eloquent ORM? I’ve tried to look around but couldn’t find anything! Answer attach(): Insert related models when working with many-to-many relations No array parameter is expected Example: sync(): Similar to the attach() method…

Laravel Check If Related Model Exists

I have an Eloquent model which has a related model: When I create the model, it does not necessarily have a related model. When I update it, I might add an option, or not. So I need to check if the related model exists, to either update it, or create it, respectively: Where <related_model_exists> is the…

Laravel: Validation unique on update

I know this question has been asked many times before but no one explains how to get the id when you’re validating in the model. My validation rule is in the model so how do I pass the ID of the record to the validation rule. Here is my models/User models/BaseModel Answer One simple solution. In your Mo…

Laravel change input value

In laravel, we can get the input value via Input::get(‘inputname’). I try to change the value by doing this Input::get(‘inputname’) = “new value”;. But then, I get the error message saying Can’t use function return value in write context. Is it possible for us change …

laravel compact() and ->with()

I have a piece of code and I’m trying to find out why one variation works and the other doesn’t. return View::make(‘gameworlds.mygame’, compact(‘fixtures’), compact(‘teams’))->with(‘selections’, $…