open-admin icon indicating copy to clipboard operation
open-admin copied to clipboard

open-admin forked from z-song/laravel-ladmin. Removing jquery, now based on Bootstrap5, vanilla JS

Results 95 open-admin issues
Sort by recently updated
recently updated
newest added

When defining a class to an element, OA is creating a variable which is defined by kebab-case. var choices_cmb-monitor-type ![image](https://user-images.githubusercontent.com/4548213/180980452-32264732-8591-4021-b734-adad9e8992c2.png)

Column selector is broken. This patch fixes it.

Remove getElementClass() from BatchAction so that custom batch action button has correct class name.

In OpenAdmin\Admin\Grid\Tools\BatchAction.php, BatchEdit is added by default. This is imcompatible to laravel-admin and can not be disabled. This patch adds `disableEdit` method to make BatchEdit disabled.

Create button in related models grid on details page will have morphed model attributes e.g., commentable_id=1&commentable_type=Namespace%5C%5CModels%5CPage which can be used for creating related items

How do I set flatpickr correctly with the Italian language?

Hi, I installed open-admin with laravel 10 with the api tester but the api responds "The route api\/user could not be found." if the request is api/user. But I enter...

I would like to update the CKEditor version that comes by default after installing the open admin extension. how could i do it?

I have custom cast class, which return MoneyPhp object. Laravel doc: https://laravel.com/docs/10.x/eloquent-mutators#custom-casts My code: ```php $grid->column('current_balance', __('admin.grid.wallet.current_balance'))->display(function ($value) { $decimalFormatter = new DecimalMoneyFormatter(new ISOCurrencies()); return $decimalFormatter->format($value); }); ``` I get...

Hi there, I can restrict views depending on user role, but I want to know if menu_items can be hidden / shown based on current users role as well?