Skip to content

Releases: jeroennoten/Laravel-AdminLTE

v3.15.3

02 Dec 14:48
606d34a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.15.2...v3.15.3

v3.15.2

13 Aug 22:01
8f2fe5f

Choose a tag to compare

What's Changed

  • Allow using tooltips on profile item components by @dfsmania in #1352

Full Changelog: v3.15.1...v3.15.2

v3.15.1

02 Aug 14:58
fc63152

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.15.0...v3.15.1

v3.15.0

24 Feb 22:24
0269331

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.14.3...v3.15.0

v3.14.3

13 Jan 20:22
76b776f

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.14.2...v3.14.3

v3.14.2

09 Nov 16:36
dfd6b46

Choose a tag to compare

What's Changed

  • Improve style on Datatables component when using responsive extension by @dfsmania in #1320
  • Improve Input Switch component by @dfsmania in #1317

Full Changelog: v3.14.1...v3.14.2

v3.14.1

15 Oct 18:44
4dafd79

Choose a tag to compare

What's Changed

  • Revert type='module' on components scripts due to backward compatibility issues by @dfsmania in #1313

Full Changelog: v3.14.0...v3.14.1

v3.14.0

11 Oct 20:12
9ce9ef6

Choose a tag to compare

What's Changed

Full Changelog: v3.12.1...v3.14.0

Breaking Changes

Caution

The right-sidebar section was renamed to right_sidebar to keep consistency with other section names (see details on #1301). So you should update your views extending this template if you were using that section. Also, it's recommended to review and update the package published views if it's your case.

While including Vite Support the old Laravel Mix configuration was reworked. This new version would still be compatible with the old configurations options, however we recommend migrating to the new one:

Old config

    /*
    |--------------------------------------------------------------------------
    | Laravel Mix
    |--------------------------------------------------------------------------
    |
    | Here we can enable the Laravel Mix option for the admin panel.
    |
    | For detailed instructions you can look the laravel mix section here:
    | https://github.com/jeroennoten/Laravel-AdminLTE/wiki/Other-Configuration
    |
    */

    'enabled_laravel_mix' => false,
    'laravel_mix_css_path' => 'css/app.css',
    'laravel_mix_js_path' => 'js/app.js',

New config

    /*
    |--------------------------------------------------------------------------
    | Laravel Asset Bundling
    |--------------------------------------------------------------------------
    |
    | Here we can enable the Laravel Asset Bundling option for the admin panel.
    | Currently, the next modes are supported: 'mix', 'vite' and 'vite_js_only'.
    | When using 'vite_js_only', it's expected that your CSS is imported using
    | JavaScript. Typically, in your application's 'resources/js/app.js' file.
    | If you are not using any of these, leave it as 'false'.
    |
    | For detailed instructions you can look the asset bundling section here:
    | https://github.com/jeroennoten/Laravel-AdminLTE/wiki/Other-Configuration
    |
    */

    'laravel_asset_bundling' => false,
    'laravel_css_path' => 'css/app.css',
    'laravel_js_path' => 'js/app.js',

See details on Wiki / Misc Config. Also, if you want to use the new configuration options with VITE and you had previously published the package views, then you'll need to update them.

v3.13.0

04 Aug 15:15
b254870

Choose a tag to compare

What's Changed

Full Changelog: v3.12.0...v3.13.0

v3.12.0

05 Jul 14:26
81a39e5

Choose a tag to compare

What's Changed

Full Changelog: v3.11.0...v3.12.0

Important

The basic_views package resource was removed, since it was nothing but just a very basic example of how to use the layout. The basic_routes package resource was renamed to auth_routes to be more meaningful. The enhanced installation type was removed and replaced by types: basic_with_auth (basic installation resources and legacy Laravel/UI related resources) and basic_with_views (basic installation and publishing of the layout views). However, neither of the changes affect the normal installation of the package.