Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 27, 2023 21:03
Show Gist options
  • Save ilyasozkurt/f0eccf4182a5069ddce204a4607424c7 to your computer and use it in GitHub Desktop.
Save ilyasozkurt/f0eccf4182a5069ddce204a4607424c7 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Role;
class User extends Model
{
public function roles()
{
return $this->hasMany(Role::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment