Use this starter kit template to kickstart your Laravel Bundles.
-
Rename the 'bundlestarter' folder in the bundles directory to the desired bundle name
-
Add the line below to the array inside of the application/bundles.php file
'bundlestarter' => array('auto' => true, 'handles' => 'bundlestarter'),
Be sure to change the two occurrences of 'bundlestarter' to the name of your new bundle
-
Finally, if you are going to use the controllers/bundlecontroller.php file, be sure to replace the 2 occurences of 'bundlestarter' to the name of your bundle
You can now start crafting your new bundle.