z-song / demo.laravel-admin.org

Source code of official http://demo.laravel-admin.org website.
507 stars 250 forks source link

Radio filter is not working. Help #17

Open SwetaKhasale opened 6 years ago

SwetaKhasale commented 6 years ago

The following is my filter code..... $grid->filter(function ($filter) { $filter->disableIdFilter(); $filter->like('name'); $filter->equal('category')->radio([
'1' => 'Receive', '0' => 'Issue', ]);
});