Role.php 299 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Model\Privillage;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Role extends Model
  5. {
  6. protected $table = 'roles';
  7. protected $primaryKey = 'id';
  8. const SPECIAL_ACCESS = ['administrator'];
  9. protected $fillable = [
  10. 'role_name',
  11. 'description',
  12. 'akses'
  13. ];
  14. }