Skip to content

Instantly share code, notes, and snippets.

@brunocmoraes
Created August 12, 2020 23:50
Show Gist options
  • Save brunocmoraes/ea45f70465c7fc43af8d3597505339e6 to your computer and use it in GitHub Desktop.
Save brunocmoraes/ea45f70465c7fc43af8d3597505339e6 to your computer and use it in GitHub Desktop.
Single admin role to small projects
ADMIN_EMAILS=user1@example.com,user2@example.com
<?php
return ['admin_emails' => explode(', ', env('ADMIN_EMAILS'));]
<?php
function isAdmin() {
$admin_emails = config('settings.admin_emails');
if(in_array($this->email, $admin_emails) return true;
else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment