You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Run the following terminal commands in the project's folder
53
+
3. When prompted, add your Hiker.dev user & license. You can store these credentials in a `auth.json`, but don't forget to add this file to the project's `.gitignore`!
54
+
55
+
4. Finally, run Hiker's installation command:
82
56
83
57
```shellsession
84
-
composer require whitecube/hiker
85
58
php artisan hiker:install
86
59
```
87
60
61
+
## Publish the base files for common components
62
+
63
+
This package ships with a set of publishable components that will help setup the project's front-end basics in a few seconds. The following command will prompt for the components you can install:
64
+
65
+
```shellsession
66
+
php artisan publish:component
67
+
````
68
+
88
69
## Creating new publishable components
89
70
90
71
In order to create a publishable component, one should simply create a new "Publisher" class inside `src/Components/Publishers` and implement `Whitecube\LaravelPreset\Components\PublisherInterface` :
0 commit comments