Skip to content

laravel-omaha/cat-friends

Repository files navigation

Laravel Artisan for Every Day Driving

A demo Laravel Project highlighting Laravel Artisan Created for the Omaha Laravel Meetup group

by: @BeardAboutIt

Installation

  1. Set up any pre-requisites ( MySQL, Apache, PHP ) for a local Laravel project.
  2. Clone the repository to wherever you keep projects locally.
  1. Head into the cat-friends project directory.
  • cd cat-friends
  1. Install the Composer dependencies.
  • composer install
  1. Copy .env.example to .env
  2. Set any necessary details in .env such as your database user and password.
  3. Generate a local application key.
  • php artisan key:generate
  1. Run your migrations and set up some smaple data.
  • php artisan cats:fresh

Meetup Presentation

Finished Version

To see a finished version of the repository:

  1. Checkout the Dry Run branch.
  • git checkout dryrun
  1. Re-Run your migrations and refresh your sample data.
  • php artisan cats:fresh