We attempt to document every possible breaking change. Moreover, you can find more details about each release in the CHANGELOG.
Few core breaking changes from v1.x
to v2.x
, we'll try to list down every change as much as we can.
With the new version, we have replaced the old UI with a new one using TailwindCSS which cause few incompatibility issues.
The components that have been deleted are:
In addition to that, we simplified the Vue components' props for most of the remaining components so that the core bundle of the LaRecipe will be smaller and useful for most use cases.
Few changes have been made to v2.0
return [
'ui' => [
'code_theme' => 'dark', // or: light
'fav' => '', // eg: fav.png
'colors' => [
'primary' => '#787AF6',
'secondary' => '#2b9cf2'
],
],
];
auth_links
section has been removed since the entire navbar will be avaiable under your resources/vendor/larecipe/partials/navbar
and you can edit it from there.return [
'settings' => [
'auth' => false,
'ga_id' => ''
],
];
You can add them manually or you can run this command:
{warning} Please note running the command with
--force
will override your config settings.
php artisan vendor:publish --tag=larecipe_config --force
There are some new enhancements and fixes added to v2.0
. In order to apply them you can run:
php artisan vendor:publish --tag=larecipe_assets --force
To publish the new views partials, please run this command
php artisan vendor:publish --tag=larecipe_views