Skip to content

Instantly share code, notes, and snippets.

View PeterDKC's full-sized avatar

Peter PeterDKC

  • Omaha, NE, US
View GitHub Profile
@jhoff
jhoff / Enums.php
Last active August 27, 2024 09:51
Laravel Model Enumeration Trait
<?php
namespace App\Traits;
use Illuminate\Support\Str;
use App\Exceptions\InvalidEnumException;
trait Enums
{
/**