Tony Murray 607a567090 Don't check file permissions on every request, handle failures (#9264)
* Don't check file permissions on every request, handle failures
Improve error page visually

* only print minimal mkdir

* invert file_exists check, whoops

* docblock

* revert accidental changes

* rename variable

* Change database errors to use the new layout

* Add support url to the default layout

* Replaced \n for && in fix for user perms

* fix web output
2018-10-18 21:08:46 -05:00

10 lines
239 B
PHP

@extends('layouts.error')
@section('title')
{{ isset($title) ? $title : __('Whoops, looks like something went wrong. Check your librenms.log.') }}
@endsection
@section('content')
{{ isset($content) ? $content : '' }}
@endsection