Let's try to create a simple CRUD for Tasks with two fields (for now): name and
is_completed.
In this lesson, we'll manage the Model/Migration, Routes, and Controllers and add a navigation link in the top menu.
Preparing the Database
First, we create the DB structure with factories to create some fake records:
php artisan make:model Task -mf
The table structure is in Migration.
database/migrations/xxxx_create_tasks_table.php:
public function up(): void{ Schema::create('tasks', function (Blueprint $table) { $table->id(); $table->string('name'); $table->boolean('is_completed')->default(false); $table->timestamps(); });}
In the Model, we just make the fields fillable and cast is_completed to boolean.
use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model; class Task extends Model{ use HasFactory; protected $fillable = [ 'name', 'is_completed' ]; protected function casts(): array { return [ 'is_completed' => 'boolean' ]; }}
Then, the Factory with the...
If you don't use the show method in TaskController maybe it's better to use Route::resource('tasks', TaskController::class)->except('show') in web.php;
Alright bro. Whats the advantage though?
You dont register routes you will never use, but in any case they are 404
Alright, thanks
It seems as in new version instead of 'url' we have 'href':
Good catch, will add to our to-do list to update the course. Thanks!