This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 387
How to update Ticketit
thekordy edited this page Oct 4, 2015
·
4 revisions
To update current Ticketit version to the latest version released.
Update may need to replace some views so Make sure you have backup of resources/views/vendor/kordy/ticketit
- Run this code via your terminal from the Laravel project root (where composer.json is located)
composer update kordy/ticketit
- Install new database tables by running the migrate artisan command
php artisan migrate --path=vendor/kordy/ticketit/src/Migrations
-
If needed, add the settings you want to customize from 'vendor/kordy/ticketit/src/Config/ticketit.php' to your application config at 'config/ticketit.php' .. current available settings
-
Publish the views (It won't replace matched views files at
resources/views/vendor/kordy/ticketit/
so in order to publish updated views, move away current views directory atresources/views/vendor/kordy/ticketit/
after backing it up)
php artisan vendor:publish --provider="Kordy\Ticketit\TicketitServiceProvider" --tag="views"