bloggy

Repository to demonstrate Laravel Livewire as simply as possible.

Stars
0
Committers
1

Bloggy

Created to demonstrate Laravel Livewire.

Running

Ensure requirements have been satisfied for installing and running a Laravel 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 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
Related Projects