for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models\Eloquent;
use Illuminate\Database\Eloquent\Model;
class UserPermission extends Model
{
protected $fillable=[
'user_id', 'permission_id'
];
public static $permInfo=[
'1' => 'Show site admin badge and allow frontend access to admin portal',
// Why 26 you may ask? Praise be the all-mighty samsung AC that keeps my room at 26 celsius.
'26' => 'Allow access to image hosting services',
public function user() {
return $this->belongsTo('App\Models\Eloquent\User');
}