• File: RoleUser.php
  • Full Path: /var/www/paytekchalenge/app/Models/RoleUser.php
  • Date Modified: 07/19/2022 7:23 PM
  • File size: 208 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class RoleUser extends Model
{
    //
    protected $fillable = ['role_id', 'user_id'];

    public $table = "role_user";
}