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

Build a full-featured administrative interface in ten minutes

Results 215 laravel-admin issues
Sort by recently updated
recently updated
newest added

- Laravel Version: 9.19 - PHP Version:8.0.2 - Laravel-admin: 1.8.9 ### Description: I try any step to fix n+1 problem on grid column expansion. how to fix it?

- Laravel Version: 5.5 - PHP Version: 7.3.9 - Laravel-admin: 1.8.17 ### Description: 导出按钮失效 ![image](https://user-images.githubusercontent.com/33407400/188279929-4e31a4a7-095a-4be2-87ec-486453e87c04.png) ### Steps To Reproduce:

版本是最新 ``` class ImportEnglish extends Action { protected $selector = '.import-english'; public function handle(Request $request) { $res = Excel::import(new EnglishImport(), $request->file('file')); if ($res['code'] != 0) { return $this->response()->error($res['message']); } return...

Hello. I found problem with hasOne relation with snakeCased method. For example, when I have class like this: ```php class CartItem { public function productVariant() { return $this->belongsTo(ProductVariant::class); } }...

- Laravel Version: 5.6.39 - PHP Version: 73 - Laravel-admin: 1.6 ### Description: I want to rename the grid filter id name eg: the default name show ID but I...

Add polymorphic relation field support. Usage example: ```php $form->radioButton('menuable_type', __('Link to'))->options([ (new PageCategory())->getMorphClass() => __('Page Category'), (new Page())->getMorphClass() => __('Page'), (new Category())->getMorphClass() => __('Product Category'), (new Product())->getMorphClass() => __('Product'), ])->when((new...

- Laravel Version: #.#.# - PHP Version: - Laravel-admin: #.#.# ### Description: ### Steps To Reproduce: I'm new to this and followed the documentation but I'm still unable to seperate...

Acts weird sometimes by failing to recognize param $parentId as int and thus recognizes it as string hence issues in insertion of a particular $param childrens into the database

- Laravel Version: 5.6 - PHP Version: 7.3 - Laravel-admin:1.7 ### Description: I want to do filter use between to compare date cross table . Is it possible to do...