Skip to main content

Search Results for "CRUD"

We found 14 results for "CRUD".

Tutorial 22 min read Premium

Laravel 11 + Vue.js 3 CRUD with Composition API

There are quite a lot of articles/videos on Laravel + Vue CRUD, but not enough is published on the newest Vue.js 3 version, using the new Composition API. So, with this step-by-step detailed article, let's fill in that gap, building a simple Company management form.

Tutorial 4 min read Free

Nested Resource Controllers and Routes: Laravel CRUD Example

When building CRUD-like projects, sometimes you want some items be accessible only with their parent, for example in countries-cities relationships, you don't want to list all the cities in the world, but only by country, like /countries/123/cities, where 123 is country_id. This article will show you how to do it, using Route::resource() and usual CRUD controllers.

Video 16:50 mins Free

Laravel Jetstream: Add CRUD with User Roles

Almost live-coding video, on how to add your own features into Jetstream-powered Laravel installation. The goal is to show you that Jetstream isn't that scary or opinionated, after installing you may proceed coding "the old Laravel way".

Package 27450 stars Last updated November 2025

filamentphp/filament

Filament is a collection of tools for rapidly building beautiful TALL stack apps, designed for humans.

Code Example guillaumebriday/laravel-blog

guillaumebriday/laravel-blog

Files in the example:

  • app/Http/Controllers/Admin/PostController.php
  • routes/admin.php
  • resources/views/admin/posts/create.blade.php
  • resources/views/admin/posts/edit.blade.php
  • resources/views/admin/posts/_form.blade.php
  • resources/views/admin/posts/index.blade.php
  • resources/views/admin/posts/_list.blade.php

Code Example JustinByrne/Mealing

JustinByrne/Mealing

Files in the example:

  • app/Http/Controllers/IngredientController.php
  • routes/web.php
  • views/admin/ingredients/index.blade.php
  • resources/views/admin/ingredients/create.blade.php
  • resources/views/admin/ingredients/edit.blade.php
  • resources/views/admin/ingredients/show.blade.php

Tutorial 3 min read Free

CRUD: How to avoid building whole Form for Delete button

There is one annoying thing in Laravel RESTful approach - if you want to have Edit/Delete links in your tables, Edit is done easy with a link to URL, but for Delete you have to build the whole form. Is there a way to avoid it?