Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: easyadmin8/EasyAdmin8

Tags

v8.1.18

Toggle v8.1.18's commit message
feat(table): enhance table reset functionality with dynamic filter ha…

…ndling

- Refactored variable declarations from var to let for better scoping
- Implemented dynamic filter extraction from table columns
- Added support for custom search values and operators in reset logic
- Preserved xmSelect model reset behavior
- Improved table reload with merged default where conditions-Maintained backward compatibility with existing table reset API

v8.1.17

Toggle v8.1.17's commit message
feat(search): add datetime range search functionality

- Implement datetime range search for admin controller
- Add support for datetime range in easy-admin search filter
- Update form rendering to handle datetime range input

v8.1.16

Toggle v8.1.16's commit message
fix(admin): update password hashing method- Replace `password` functi…

…on with `password_hash` for secure password storage- Use `PASSWORD_DEFAULT` algorithm for hashing

- Improve password security in admin controller

Signed-off-by: wolfcode <[email protected]>

v8.1.15

Toggle v8.1.15's commit message
🚀 Layui v2.11.3

v8.1.14

Toggle v8.1.14's commit message
refactor(auth): upgrade password hashing to PHP's password_hash

- Replace custom password hashing function with PHP's built-in password_hash
- Update password verification to use password_verify
- Adjust database schema to accommodate new password hash length
- Modify installation and login controllers to use new hashing method

v8.1.13

Toggle v8.1.13's commit message
fix(easy-admin): improve select component rendering and initialization

- Update select component initialization to properly set selected values
- Modify search value comparison to use loose equality for broader compatibility
- Enhance xmSelect rendering with pre-selected values

v8.1.12

Toggle v8.1.12's commit message
feat(admin): add MIME type for logo upload

- Add image MIME type to the logo upload input
- This change improves file type restriction for logo uploads

v8.1.11

Toggle v8.1.11's commit message
Update welcome.html

v8.1.10

Toggle v8.1.10's commit message
feat(mall):新增表单中多选案例 add simulated multi-select feature

- Add simulated multi-select functionality to goods add and edit pages
- Integrate xm-select library for multi-select implementation
- Add random color theme to the multi-select dropdown
- Include predefined options for demonstration purposes

v8.1.9

Toggle v8.1.9's commit message
feat(curd): 关联表优化支持 add relation support and optimize model associations

- Add support for handling relations in CURD operations
- Optimize model associations to use hasOne instead of belongsTo
- Implement field selection for relations
- Update controller to handle AJAX requests and return JSON data Modify model to include relation methods