Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/belzaaron/bloggy

Repository to demonstrate Laravel Livewire as simply as possible.
https://github.com/belzaaron/bloggy

laravel laravel-livewire livewire presentation tailwindcss

Last synced: about 1 month ago
JSON representation

Repository to demonstrate Laravel Livewire as simply as possible.

Awesome Lists containing this project

README

        

# Bloggy

Created to demonstrate [Laravel Livewire](https://laravel-livewire.com/).

## Running

Ensure requirements have been satisfied for installing and running a [Laravel](https://laravel.com) application.

- `composer install`
- `cp .env.example .env`
- `touch database/database.sqlite`
- `php artisan key:generate`
- `php artisan migrate:fresh --seed`
- `php artisan serve`
- Visit [Local Bloggy Login](http://127.0.0.1:8000/login) and enter `[email protected]` with `password` to login.
- Click the `👍` or `👎` to see Livewire in action.

## Notable files

- `app\Http\Livewire\Posts\Like.php`
- `resources\views\livewire\posts\like.blade.php`
- `resources\views\livewire\posts\unlike.blade.php`
- `resources\views\dashboard.blade.php`