Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravelpackage maintained by smileraj

Description
LaravelPackage provide a separate package with skelton of laravel
Author
Last update
2020/08/26 12:03 (dev-master)
License
Links
Downloads
1

Comments
comments powered by Disqus

LaravelPackage

Latest Stable Version Total Downloads Latest Unstable Version License

A simple laravelpackage implementation for Laravel.

Installation

Install the package through Composer.

Run the Composer require command from the Terminal:

composer require smileraj/laravelpackage

Should you still be on version ^7.24 of Laravel, the final steps for you are to add the service provider of the package and alias the package. To do this open your config/app.php file.

Add a new line to the providers array:

smileraj\LaravelPackage\LaravelPackageServiceProvider::class

And optionally add a new line to the aliases array:

'Package' => smileraj\LaravelPackage\Facades\package::class,

Now you're ready to start using the laravelpackage in your application.