for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CleaniqueCoders\Profile\Models;
use CleaniqueCoders\Traitify\Concerns\InteractsWithUuid;
use Illuminate\Database\Eloquent\Model;
class Email extends Model
{
use InteractsWithUuid;
CleaniqueCoders\Traitify...cerns\InteractsWithUuid
$uuid_column
CleaniqueCoders\Profile\Models\Email
protected $guarded = [
'id',
];
/**
* Get all of the owning emailable models.
*/
public function emailable()
return $this->morphTo();
}