BTemplates.com

Advertisement

YoGiTeCh....... Powered by Blogger.

About Me

My photo
Mumbai, Maharastra, India

How to login with twitter in laravel 5.4

In this Tutorial will show you how to user login with twitter using laravel/socialite packages. social authentication is very importan...

Contact Form

Name

Email *

Message *

Search This Blog

Subscribe

Translate

Recent Posts

Posts

Pages

Blogger templates

Popular Posts

Monday, 27 March 2017

How to create chat application in laravel


In this video, i will show you how to Building simple chat application using Laravel. This is a tutorial to help you add a chat functionality to your Laravel web application.


How to Create Chat Application in laravel project
to follow this steps:

1. Create ChatController.php

we can create ChatController Using following Command :
 php artisan make:controller ChatController
2. Create Chat.php model

we can easily create model using following command :
 php artisan make:model Chat --migration  
3. Create like.php model

we can create model using following command :
 php artisan make:model like --migration  
4. Create Dashboard.blade.php
if you want to create blade.php file just go to resources folder and then right click on views folder and create new file and give name as Dashboard.blade.php



How to Create Project in Laravel




This is my first application tutorial. how to create or build project in laravel. this video will help you while creating a new project in laravel 5.

1. Install laravel :
https://laravel.com/

2. Create Project :
composer create-project --prefer-dist laravel/laravel Projectname

3. Local Development Server :

If you have PHP installed locally and you would like to use PHP's built-in 
development server to serve your application, you may use the serve Artisan command. 
This command will start a development server at http://localhost:8000:
php artisan serve

4. Quick Authentication :
Laravel provides a quick way to scaffold all of the routes and 
views you need for authentication using one simple command:
php artisan make:auth




Wednesday, 22 March 2017

Wednesday, 22 February 2017

Tuesday, 21 February 2017