Installation

Downloading

This package is added to existing Laravel projects as a dependency by requiring it with Composer.

composer require streams/ui:1.0.x-dev

Streams UI comes pre-configured with the Streams starter application.

Cloning with Git

git clone [email protected]:laravel-streams/streams-ui.git

Publishing Assets

Use the following command to publish public assets for this package.

php artisan vendor:publish --provider=Streams\\Ui\\UiServiceProvider --tag=public

The above command will copy public assets from their package location to the public/vendor directory.

Updating

From within your project, use Composer to update this individual package:

composer update streams/ui --with-dependencies

You can also update your entire project using composer update.