Package Data | |
---|---|
Maintainer Username: | petehouston |
Maintainer Contact: | contact@petehouston.com (Pete Houston) |
Package Create Date: | 2015-05-07 |
Package Last Update: | 2015-05-07 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-25 15:15:47 |
Package Statistics | |
---|---|
Total Downloads: | 6 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This is a basic Laravel application template for quickly bootstraping websites.
1.Create a new project using composer.
$ php composer create-project petehouston/laio YOUR_PROJECT_NAME
$ php composer install
2.Provided commands.
$ php artisan spawn:seeder SEEDER_NAME
for example:
$ php artisan spawn:seeder User
A Seeder class will be generated at /database/seeds/
.
$ php artisan spawn:observer OBSERVER_NAME
for example:
$ php artisan spawn:observer User
An Observer class will be generated at /app/Observers/
.
$ php artisan spawn:view.composer VIEWCOMPOSER_NAME
for example:
$ php artisan spawn:view.composer Navbar
A ViewComposer class will be generated at /app/Views/Composers/
.
3. Support helpers functions.
It's easy. Just create a new .php
file under /app/Helpers/
.
A template file /app/Helpers/helpers.php
is already provided for your references if you don't know how to write helpers properly.
4. Environment settings
Checkout the .env.example.php
for available keys.
I don't know. I just make this for my personal work.