/laravel-vue-js-twitter-app

In this Laravel and Vue Example, we will build a twitter type web application. For this tutorial, I am using Laravel and Vue.js. I am defining some components inside Vue.js. Also, I am using Axios to send a network request. We simply build an application in which, the user can post the tweet and appears in his timeline

Primary LanguagePHP

#Steps to use localhost

1: First download or clone it using

git clone git@github.com:techmahedy/laravel-vue-js-twitter-app.git

2: Type the following command: composer install

3: stall npm dependencies: npm install

4: Start the watch: npm run watch

5: Create a database and configure inside the .env.example file.

6: rename .env.example to .env and save it

7: Migrate the database: php artisan migrate

8: Now you can check it by running

php artisan serve