Category: PHP
23
Jun
Connect To MySQL Database In Laravel?
by admin
No Comments
In this post we will provide below steps to connect with Mysql database in Laravel. Step 1: Open Phpmyadmin or any dbms tool you are...
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:...
22
Apr
Install Drupal 8 On windows Using XAMPP
by admin
No Comments
In this post we will provide you clear information to install drupal8. First of all you need to install XAMPP in your system to install...