• File: Role.php
  • Full Path: /home/masbinta/public_html/core/app/Models/Role.php
  • File size: 270 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use App\Models\Admin;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;

class Role extends Model
{
    public function admins() : HasMany
    {
        return $this->hasMany(Admin::class);
    }
}