Progressive Web Apps (or PWAs) work across browsers and devices. When installed they may include offline support.
- Visit the app’s website
- Click the export icon on Safari’s bottom bar
- Scroll the options and select “Add to Home Screen”
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- The usual suspects --> | |
<meta charset="utf-8"> | |
<meta name="description" | |
content="My app is awesome because..."> | |
<title>My awesome app</title> | |
<link rel="shortcut icon" |
module.exports = { | |
/* ... */ | |
modules: [ | |
['~/modules/sentry', { | |
public_key: '', | |
private_key: '', | |
project_id: '', | |
}], | |
], | |
/* ... */ |
#Laravel 5 Simple ACL manager
Protect your routes with user roles. Simply add a 'role_id' to the User model, install the roles table and seed if you need some example roles to get going.
If the user has a 'Root' role, then they can perform any actions.
Simply copy the files across into the appropriate directories, and register the middleware in App\Http\Kernel.php
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.