Twitter clone project using Laravel 10, Vue 3, Tailwind CSS, and Laravel Breeze.
Clone the project
https://github.com/mokammeltanvir/Twitter-Clone.gitGo to the project directory
cd Twitter-CloneInstall dependencies
composer install
cp .env.example .env
php artisan key:generate
composer require laravel/breeze --dev
php artisan breeze:install vue --ssrCreate the DB
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_twitter
DB_USERNAME=root
DB_PASSWORD=migrate your DB
php artisan migrate
php artisan db:seedStart the Server
php artisan serve