Posts

Showing posts from May, 2017

Basic things a Laravel developer should know about / How Laravel Works

There are many things in Laravel which we think it is magical like the authentication. Actually, it's just normal coding which is being called in another file. So in this video, I will explain to you what is the magic behind this. You can get more information about this if you got to the  Laravel Documentation There are a lot of things a Laravel Developer should know about, like the creator Taylor Otwell and his crew

How to build a Social Media Website using Laravel 5.4

This is a brand new series on which I will be teaching you  How to build a Social Media Website using Laravel 5.4 Content of this playlist: Setting Up Profile Setup Post and Category model and migration Create Post Upload Image Create Category Sort Post by Category Show Post Edit and Delete Post Like and Dislike using axios Like and Dislike bug fix Add Comments List Users Add Friends Remove Friends Friend Request Tag Friends to a Post View Tagged posts in profile Download the whole project from this GitHub Repository

How to clone laravel from github?

To know how to install Laravel on your computer watch this video Make sure you have installed git command line before continuing with this instructions. Steps: Clone a Repository by git clone <repo-name> cd to the cloned folder Then type   composer install,   It will install the necessary files/folders to it Then  rename .env.example .env  to rename the .env.example file to .env You need to start Apache and Mysql on XAMPP open the .env file and change the username to root and leave password empty. Rename the database to whatever you want and create a database with that name in  PhpMyAdmin Then  php artisan key:generate Then   php artisan migrate And finally run  php artisan serve  to open it on  localhost:8000 To clone from a branch after the repo-name add -b tag and the branch name eg  git clone <repo-name> -b <branch-name> Download git command line from here