Skip to content

Commit

Permalink
Add preview and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-mcmullen committed Jun 19, 2018
1 parent 58cbeda commit aa87260
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,36 @@
# seeds
A Laravel package that helps you with seeding your database.
# Seeds for Laravel by Laracademy

![Latest Stable Version](https://poser.pugx.org/laracademy/seeds/v/stable)](https://packagist.org/packages/laracademy/seeds) [![Total Downloads](https://poser.pugx.org/laracademy/seeds/downloads)](https://packagist.org/packages/laracademy/seeds) [![Latest Unstable Version](https://poser.pugx.org/laracademy/seeds/v/unstable)](https://packagist.org/packages/laracademy/seeds) [![License](https://poser.pugx.org/laracademy/seeds/license)](https://packagist.org/packages/laracademy/seeds)

## Getting Started

The easiest way to get started is to install the package using `composer`. You can do so by running the following command.

```bash
composer required laracademy/seeds
```

That's it! Well, as long as you are using `Laravel 5.5 or higher`. If you are using an older version of Laravel please see below.

## Usage

To use the package you just need to run the `artisan` command and follow the prompts on the screen.

```bash
php artisan seeds
```

### Preview
![](preview.gif)

### Laravel 5.4 and lower

You will need to add the package into your service provider array found in `config/app.php`.

```php
providers = [
// listing of providers
Laracademy\Commands\SeedsServiceProvider::class,
// rest of providers
];
```
Binary file added preview.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit aa87260

Please sign in to comment.