Files

Livewire

Traits

Views

Models

Routes

Useful Links
MyTodo.php
Fork
<?php

Route::get('/', App\Livewire\MyTodo::class);
<?php
namespace App\Livewire;

use Livewire\Component;
use Livewire\Attributes\Rule;
use Livewire\Attributes\Title;
use Livewire\Attributes\Computed;

#[Title('My Todo List')]
class MyTodo extends Component
{
public $todos;

#[Rule('required')]
public $todo;
public function mount()
{
$this->todos = [
['todo' => 'Start your first Wirebox', 'completed' => true,],
['todo' => 'Sign up for an account', 'completed' => false,],
['todo' => 'Use ⌘K/CTRL+K to create a new Livewire component', 'completed' => false,],
['todo' => 'Modify your component and use CTRL+S to save changes', 'completed' => false,],
['todo' => 'Use ⌘K/CTRL+K to enable hot reloading', 'completed' => false,],
['todo' => 'Use ⌘E/CTRL+E to switch between files', 'completed' => false,],
];
}

public function add()
{
$this->validate();
$this->todos[] = [
'todo' => $this->todo,
'completed' => false,
];
<div class="flex w-full bg-zinc-900 h-full items-center justify-center text-gray-300 px-16">
<div class="bg-white rounded p-10">
<h2 class="text-base font-semibold leading-7 text-gray-900">My Todo</h2>
<p class="mt-1 text-sm leading-6 text-gray-500">You have {{ $this->remaining }} things on your todo list.</p>

<div class="space-y-3 mt-4">
@foreach($todos as $todo)
<div class="relative flex items-start">
<div class="flex h-6 items-center">
<input id="todo-{{ $loop->index }}" wire:model.live="todos.{{ $loop->index }}.completed" type="checkbox" value="1" class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-600">
</div>
<div class="ml-3 text-sm leading-6">
<label for="todo-{{ $loop->index }}" class="font-medium text-gray-900">{{ $todo['todo'] }}</label>
</div>
</div>
@endforeach
</div>

<form wire:submit="add" class="mt-6">
<input type="text" wire:model="todo" placeholder="My new todo..." class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
</form>
</div>
</div>
Wirebox
https://qy82y.wirebox.app:8443