Best laravel framework open-source packages.

Software tracker

Project to help you document and keep track of the features in your software application
Updated 2 years ago

Software Tracker PHP

ScreenShot

ScreenShot

ScreenShot

  • Create a database locally named revenue_collection

  • Run curl -sS https://getcomposer.org/installer | php to install composer.

  • Run git clone https://github.com/kabrick/revenue_collection_php.git to pull this project.

  • Rename .env.example file to .env inside the project root and fill in the database information. You could simply run mv .env.example .env. For example using MySQL:

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=5432
    DB_DATABASE=revenue_collection
    DB_USERNAME=root
    DB_PASSWORD=<secret>
  • In the project root directory, run:

    - composer install
    - composer update
    - npm i
    - php artisan key:generate
    - php artisan migrate --seed
    - php artisan serve
  • Other useful commands for debugging when in trouble:

    - composer dump-autoload
    - php artisan config:clear
    - php artisan cache:clear
    - php artisan clear-compiled
    - php artisan view:clear