MyOouo

Results 23 comments of MyOouo

``` $form->table('column_name', function ($table) { $table->text('key')->attribute('maxlength', 5); $table->text('value'); $table->text('desc'); }); ```

use relationship then filter like this. ``` $filter->equal('game.count', __('form.count')); ```

``` add ->config('maximumSelectionLength', 1); $form->multipleSelect('roles', trans('admin.roles'))->options($roleModel::all()->pluck('name', 'id'))->config('maximumSelectionLength', 1); ```

> Hi, I also get 'Consul cluster has no elected leader', despite both UI and statusClient.getLeader() stating that there is a leader. Turning off streaming fixed my issue. I suspect...

![image](https://github.com/z-song/laravel-admin/assets/40749214/70f4a670-2daf-42cd-862c-d21cde89cf7f)

ref package https://gitlab.com/xn_workshop/laravel-admin check the config/admin.php ![image](https://github.com/z-song/laravel-admin/assets/40749214/11f5953a-36aa-4fa9-a10e-3bbe36ee16bb)

Eloquent do not support this feature.

有能力的都自己fork了

``` $form->hidden('id'); // add this ...->rules('required|unique:your_table,phone_number,'.request()->input('id',0).',id'); ```