I have two tables, manufacturers & models that I'm seeding via factories. ManufacturersFactory:...
I am using https://github.com/nWidart/laravel-modules and have a module Cars. In CarsDatabaseSeeder...
I want to build a comprehensive practice project. I am a virtual Laravel virgin. This project will i...
I have a seeder that ended up working when I added protected $guarded = ['id'] to the model class of...
Here is part of my Listing model file: public function model() { return $this->belongsTo('Model'...
Are my relationships set up ok? I feel like they might be a little trying... the Manufacturer/Listin...
Yeah, I have that much logical sense at least... It's ManufacturerTableSeeder, ModelTableSeeder, Lis...
That's already there. Probably should've mentioned. So yeah. Really lost.
Adding protected $guarded = ['id']; to Listing model worked thanks to LordWaffle's advise but only f...
My creator migration: <?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\...
The Laravel portal for problem solving, knowledge sharing and community building.
The community