PHP Classes

File: resources/views/system/500.twig

Recommend this page to a friend!
  Classes of Ahmad Mustapha   Utility Web PHP API   resources/views/system/500.twig   Download  
File: resources/views/system/500.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Utility Web PHP API
API to retrieve movie details and other resources
Author: By
Last change:
Date: 3 years ago
Size: 864 bytes
 

Contents

Class file image Download
{% extends 'layouts/app.twig' %} {% block contents %} <div class="card card-danger"> <div class="card-header bg-danger text-white"> 500(Internal Server Error) </div> <div class="card-body text-danger font-weight-bolder"> <div class="ml-2"> {% if exception %} {% if exception.getMessage() %} {{ exception.getMessage() }} {% else %} {{ exception }} {% endif %} {% else %} Server ran in to an error while processing your request. {% endif %} </div> <a href="/" class="btn btn-sm btn-outline-success z-depth-0">Let's go home <i class="fa fa-chevron-right"></i> </a> </div> </div> {% endblock contents %}