Is there a way to access the model itself in the custom validators? I've tried passing the id in as...
I'm trying to use Laravel inside of a web IDE's virtual machine (Codio in this case). They use a cus...
The reason Eloquent works this way is that all of the calls such as find(), etc., are actually runni...
Request created: https://github.com/LaravelIO/laravel.io/issues/158
I'm pretty sure you are going to have to create that one specific table using DB instead of Schema....
Basically when you do a Facade, it's is assigning the Facade (MyClass), to a single instance of what...
You would run $userExists = DB::table('users')->select('email')->where('email', '=', $email)-&...
The Laravel portal for problem solving, knowledge sharing and community building.