Skip to content

Commit 6aa8a56

Browse files
committed
Merge branch 'master' of github.com:GusZandy/laravel-tabler
2 parents dc90096 + 532414e commit 6aa8a56

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
1-
# laravel-tabler
2-
Laravel Package for integrating Tabler template and this package is Laravel Mix friendly.
1+
# Laravel Tabler
2+
Laravel Package for integrating Tabler template and this package is Laravel Mix friendly. Currently this package can be integrated easily only on fresh installation.
3+
4+
# Installation
5+
```bash
6+
composer require guszandy/laravel-tabler
7+
```
8+
If you are using Laravel 5.5 above skip this step, but if aren't then add this line on ```config/app.php```, on ```providers```
9+
```php
10+
'providers' => [
11+
...
12+
GusZandy\Tabler\Providers\AppServiceProvider::class,
13+
...
14+
]
15+
```
16+
And then run,
17+
```bash
18+
php artisan make:tabler
19+
```
20+
Let's see what we've install. First, make sure that you already ran ```php artisan migrate``` command, then do
21+
```bash
22+
php artisan serve
23+
```
24+
Viola! You've running a Laravel site using Tabler.

0 commit comments

Comments
 (0)