Category: Laravel
23
Jun
Create A Resource Controller In Laravel
by admin
No Comments
Type the following command.php artisan make:controller MyController –resource(Here myController is the controller name).The resource controller will create the default functions index,create,store,show,edit,update & destroy() as follows. <?php namespace...
09
Jun
Setup Laravel Project In Localhost
by admin
No Comments
Here we will provide you the steps to setup laravel in your local machine. Before this , you should install XAMPP/MAMP on your computer.Also Laravel...
09
Jun
Install Laravel In MAC OS
by admin
No Comments
Open Terminal Step 1: curl -sS https://getcomposer.org/installer | php Step 2: mv composer.phar /usr/local/bin/composer Step 3: cd /Applications/MAMP/htdocs Step 4: composer create-project laravel/laravel laravel5 Note:...