Skip to content

Instantly share code, notes, and snippets.

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