Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tsommie committed Sep 29, 2020
1 parent 58f4eb7 commit efec11b
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,32 @@ This will publish overrides to enable Bootstrap like the good old days!
- `resources/views/teams`

- ~~resources/css~~ `resources/views/sass`
- ~~tailwind.config.js~~
- `webpack.mix.js`
- ~~tailwind.config.js~~ `webpack.mix.js`

### Finalizing The Installation

After installing Jetstap and swapping Jetstream resources, remove tailwindCSS and its dependencies if any from your package.json and then install and build your NPM dependencies and migrate your database:
After installing Jetsrtap and swapping Jetstream resources, remove tailwindCSS and its dependencies if any from your package.json and then install and build your NPM dependencies and migrate your database:

```
npm install && npm run dev
php artisan migrate
```

### Extras

#### Pagination

It also important to point out that Laravel includes pagination views built using Bootstrap CSS. To use these views instead of the default Tailwind views, you may call the paginator's useBootstrap method within your AppServiceProvider:

```php
use Illuminate\Pagination\Paginator;

public function boot()
{
Paginator::useBootstrap();
}
```

## License
Jetstrap is open-sourced software licensed under the [MIT license](https://github.com/nascent-africa/jetstrap/blob/master/LICENSE).

0 comments on commit efec11b

Please sign in to comment.