Last active
July 1, 2020 04:50
-
-
Save mkwsra/e394e8e023945fdc8029fba438d6aeff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
// ... | |
// Remember to import it | |
use App\Traits\HasUuid; | |
class Post extends Model | |
{ | |
// ... | |
use HasUuid; | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment