前提・実現したいこと
最後の } にエラーが出てしまうのですが原因わかりますでしょうか?
発生している問題・エラーメッセージ
'}' expected.php Peek Problem (⌥F8) No quick fixes available
該当のソースコード
protected function form() { return Admin::form(Staff::class, function (Form $form) { $form->display('id', 'ID'); $form->text('name'); $form->textarea('description'); $form->image('picture'); $form->text('email'); $form->switch('active'); $form->slider('age')->options(['max' => 100, 'min' => 1, 'step' => 1, 'postfix' => 'years old']); $form->display('created_at', 'Created At'); $form->display('updated_at', 'Updated At'); }); }
あなたの回答
tips
プレビュー