Simple twitter clone written in Laravel. using livewire for some parts of the application
- clone repo
- copy .env.example in .env
- run command php artisan key:generate
- create database.sqlite file in database folder
- use path of the database.sqlite file in .env as value of key DB_DATABASE
- run command php artisan migrate
- run command php artisan serve
- Fix issues
- Rewrite everything in livewire
- How to make livewire layouts
- Check out post like and unlike functionality with livewire
- How to add middlewares on livewire methods (For example only authorised user can like or create post)
- Why use policies and not FormRequests for authorizing user actions
- How to implement load more functionality without jquery
- Home livewire component not working as desired