Skip to content

Commit 2b66fb1

Browse files
committed
Updated Readme
1 parent c96b366 commit 2b66fb1

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@ Via Composer
1818
composer require lykegenes/laravel-datagrid-builder
1919
```
2020

21+
Then, add this to your Service Providers :
22+
``` php
23+
Lykegenes\DatagridBuilder\ServiceProvider::class,
24+
```
25+
26+
...and this to your Aliases :
27+
``` php
28+
'DatagridBuilder' => Lykegenes\DatagridBuilder\Facades\DatagridBuilder::class,
29+
```
30+
31+
Optionally, you can publish and edit the configuration file :
32+
``` bash
33+
php artisan vendor:publish --provider="Lykegenes\DatagridBuilder\ServiceProvider" --tag=config
34+
```
35+
2136
## Usage
2237

2338
``` php

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
syntaxCheck="false"
1212
>
1313
<testsuites>
14-
<testsuite name="Laravel Datagrid Builder Test Suite">
14+
<testsuite name="Lykegenes Test Suite">
1515
<directory>./tests/</directory>
1616
</testsuite>
1717
</testsuites>

0 commit comments

Comments
 (0)