Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

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

  1. Run this code via your terminal from the Laravel project root (where composer.json is located)
	composer update kordy/ticketit
  1. Install new database tables by running the migrate artisan command
	php artisan migrate --path=vendor/kordy/ticketit/src/Migrations
  1. 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

  2. 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 at resources/views/vendor/kordy/ticketit/ after backing it up)

	php artisan vendor:publish --provider="Kordy\Ticketit\TicketitServiceProvider" --tag="views"