Posts

RealTime Notification system using Laravel 5.5

Learn how to build RealTime Notification system using Laravel 5.5. In this series, I am going to use Laravel Echo, Pusher js and Vue js. Laravel provides support for sending notifications across a variety of delivery channels, including mail, SMS (via Nexmo), and Slack. Notifications may also be stored in a database so they may be displayed in your web interface. You should refer to  Laravel Documentation  for better understanding, for more examples and for finding different ways of doing something other than from what I have taught you. This series includes the following videos Installation Notification Broadcasting Correcting Common Mistakes made by Users Inside  .env  file, check whether you have changed  BROADCAST_DRIVER=log  to  BROADCAST_DRIVER=pusher  Inside  app.php  file inside the config folder, check whether you have uncommented  App\Providers\BroadcastServiceProvider::class,  Don't forg...

How to install Laravel 5.5 in Windows 10

Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller architectural pattern.  This is a short and easy tutorial to install Laravel 5.5 for beginners. Step 1: Instal Xampp and Composer Now we can start the installation. First of all, we need to install Php. Luckily Xampp comes with PHP and other stuff which we require for this installation like MySQL and Apache server. So, we can download Xampp first. Go to  https://www.apachefriends.org/download.html  and make sure you download the latest version of Xampp (check whether it includes the latest version of PHP). Once you have downloaded it install it in your favourite directory. Next, we need to install Composer. Go to  https://getcomposer.org/download/  and click on 'Composer-Setup.exe', this will automatically start the download. Once you have downloaded it you need to install it inside the Xamp...

Freely host laravel website using hostinger

It's a common question that How to freely host laravel website for testing purpose. We all know that there are a ton of free hosting website but we can't find a perfect one for our purpose and easy.  So, hostinger is one of the best free hosting website in the web. In this video I will be teaching you how to freely host laravel website using hosting Hostinger is easy, free and ad-free Advantages of using Hostinger: No ads or banners easy and fast secure and available 24*7 Web Builder inside it Free Database

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

How to Install Laravel 5.4 in Windows 10 Easily

Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller architectural pattern.  This is a short and easy tutorial to install Laravel 5.4 for beginners. Step 1: Instal Xampp and Composer Now we can start the installation. First of all, we need to install Php. Luckily Xampp comes with PHP and other stuff which we require for this installation like MySQL and Apache server. So, we can download Xampp first. Go to  https://www.apachefriends.org/download.html  and make sure you download the latest version of Xampp (check whether it includes the latest version of PHP). Once you have downloaded it install it in your favourite directory. Next, we need to install Composer. Go to  https://getcomposer.org/download/  and click on 'Composer-Setup.exe', this will automatically start the download. Once you have downloaded it you need to install it inside the Xamp...