PHP code example of datakrama / eloquid
1. Go to this page and download the library: Download datakrama/eloquid 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/ */
datakrama / eloquid example snippets
namespace App;
use Illuminate\Database\Eloquent\Model;
use Datakrama\Eloquid\Traits\Uuids;
class Role extends Model
{
use Uuids;
/**
* The users that belong to the role.
*/
public function users()
{
return $this->belongsToMany('App\User')->using('App\RoleUser');
}
}
namespace App;
use Illuminate\Database\Eloquent\Relations\Pivot;
use Datakrama\Eloquid\Traits\Uuids;
class RoleUser extends Pivot
{
use Uuids;
//
}