platform
from the update source code.composer update
to update vendor packages.public/vendor/core
and run command php artisan vendor:publish --tag=cms-public --force
platform
from the update source code.composer update
to update vendor packages.php artisan migrate
to update database.public.index
to public.single
.public/vendor/core
and run command php artisan vendor:publish --tag=cms-public --force
GET
to DELETE
(http://prntscr.com/ohvrw0) so if you have custom plugins, you need to change all of it to DELETE
in your plugin /routes/web.phpRoute::get('delete/{id}', ...
To
Route::delete('delete/{id}', ...
And,
Route::post('delete-many', ...
To
Route::delete('delete-many', ...
platform
from the update source code.public/vendor/core
and run command php artisan vendor:publish --tag=cms-public --force
composer install
to update vendor packages.php artisan migrate
to update database.status
column from publish
to published
.You need to copy your changes to new source code.
From this version, all core modules, plugins and themes are located in /platform folder.
php artisan cms:theme:assets:publish your-theme
to copy theme's assets to public/themes/your-theme
Run composer install
and php artisan migrate
Run command php artisan storage:link
core/base
with new source code.core/base/resources/views/layouts/master.blade.php
& core/table/src/Abstracts/TableAbstract.php
php artisan vendor:publish --tag=public --force
php artisan vendor:publish --tag=lang --force
composer install
to update vendor packages.php artisan migrate
to update database.composer install
to update vendor packages.php artisan migrate
to update database.composer install
to update vendor packages.php artisan migrate
to update database.{warning} Old custom plugins which you built with v1.1 will not work on v2.0.
composer install
to update vendor packages.php artisan migrate
to update database.