first commit

This commit is contained in:
2019-09-25 22:36:21 -05:00
commit e94b153718
92 changed files with 9120 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
class AvailableUserPermission extends Model
{
/**
* The attributes that are mass assignable
*/
protected $fillable = [
'permission',
];
protected $table = 'available_user_permissions';
public $timestamps = false;
}