Hello, I need help with the following structure in laravel: - User id - Purchase id user_id - Deta...
I have the following scenario. I have 3 main tables: Countries Job possition Income *** Income tab...
Hello everyone, First of all, what a great community Laravel.IO is. I have found many answers to my...
Your validation for updating doesnt work because you are not passing the ID exception: Validator::ma...
From what I can understand you have a One-to-Many relationship in your logic. So, One writer can hav...
Your code shoudl be: $t->integer('format_id')->unsigned(); $t->foreign('format_id')->ref...
Why not use Query Builder and do something like this: $user = DB::table('users')->where('id', $id...
you have to do something like this: $product = Product::with('category')->get(); return view('pro...
The Laravel portal for problem solving, knowledge sharing and community building.
The community