PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
goldspecdigital
/
laravel-eloquent-uuid
/
tests
/
Models
<?php declare(strict_types=1); namespace GoldSpecDigital\LaravelEloquentUUID\Tests\Models; use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Uuid; use Illuminate\Database\Eloquent\Model; class TestModelUsingTraitWithUuid4 extends Model { use Uuid; /** * The table associated with the model. * * @var string */ protected $table = 'test_model_with_uuids'; /** * The "type" of the auto-incrementing ID. * * @var string */ protected $keyType = 'string'; /** * Indicates if the IDs are auto-incrementing. * * @var bool */ public $incrementing = false; /** * The attributes that are mass assignable. * * @var array */ protected $guarded = []; }
[-] TestModelUsingTraitWithUuid1.php
[edit]
[-] TestModelExtendingClassWithoutUuid1.php
[edit]
[-] TestModelUsingTraitWithoutUuid4.php
[edit]
[+]
..
[-] TestModelExtendingClassWithUuid4.php
[edit]
[-] TestModelUsingTraitWithoutUuid1.php
[edit]
[-] TestModelExtendingClassWithoutUuid4.php
[edit]
[-] TestModelUsingTraitWithUuid4.php
[edit]
[-] TestModelExtendingClassWithUuid1.php
[edit]