Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/belzaaron/bloggy
- Owner: belzaaron
- Created: 2022-08-21T04:13:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-15T04:38:59.000Z (over 1 year ago)
- Last Synced: 2024-10-01T09:23:23.141Z (about 1 month ago)
- Topics: laravel, laravel-livewire, livewire, presentation, tailwindcss
- Language: PHP
- Homepage: https://bloggy.belz.dev
- Size: 2.43 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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`