PHP code example of stayallive / laravel-eloquent-uuid
1. Go to this page and download the library: Download stayallive/laravel-eloquent-uuid library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
stayallive / laravel-eloquent-uuid example snippets
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Stayallive\Laravel\Eloquent\UUID\UsesUUID;
class SomeModel extends Model
{
use UsesUUID;
/**
* This method is not needed but can be used to override which attribute is filled with the UUID.
*/
public function getUUIDAttributeName(): string
{
return $this->getKeyName();
}
}