| xqd
@@ -71,7 +71,7 @@ class NoticeController extends AdminController
|
|
|
return Form::make(new Notice(), function (Form $form) {
|
|
|
$form->display('id');
|
|
|
$form->text('title');
|
|
|
- $form->editor('content');
|
|
|
+ $form->textarea('content');
|
|
|
$form->radio('users')->options([0=>'全部用户',1=>'男性用户',2=>"女性用户"])->default(0);
|
|
|
$form->display('created_at');
|
|
|
$form->display('updated_at');
|