is there any way to simplify these three line to create multiple flash message?
session()->flash('status', 'error');
session()->flash('title', 'test title');
session()->flash('message', 'test message');
i tried this but does not work
return view('panel.codes.CodeCrud.create', [
'categories' => collect(),
'cards' => collect(),
])->with([
'status' => 'error',
'title' => 'test title',
'message' => 'test message',
]);