I am watching this create modal tutorial, and the make helper doesnt seem to work for me https://laravel-livewire.com/screencasts/s7-create-modal
This is how the code looks in the video
1 messages · Page 1 of 1 (latest)
I am watching this create modal tutorial, and the make helper doesnt seem to work for me https://laravel-livewire.com/screencasts/s7-create-modal
This is how the code looks in the video
public function create()
{
$this->editing = $this->makeBlankCaseStudy();
dd($this->editing);
$this->showModal = true;
}
public function makeBlankCaseStudy()
{
return CaseStudy::make([
'published_at' => now(),
'is_published' => 1
]);
}
When I dd I get this, and i am not seeing any attributes being added
Laravel does wasn't very helpful