Laravel Options by Spatie is a package to create lists of options from different sources: " "" "> " "";">A typical web application always has many select fields with options. This package makes it simple to transform enums, models, states, and arrays to a unified option structure.An example...
17 August, 2022
A Simple Draft and Revision System for Laravel
Programing Coderfunda
August 17, 2022
Laravel, Packages
No comments
Laravel Drafts is a simple drop-in draft and revision system for Eloquent models. This package also supports drafts for related models; you can control saving models in a published or draft mode.To get started with this package, your project will use the provided HasDrafts trait:1use Illuminate\Database\Eloquent\Model;2use...