Error yang biasa muncul bila link di aplikasi Laravel anda tidak ditemukan “Whoops, looks like something went wrong.”
Cara untuk mengganti pesan tersebut, buka file app/Exceptions/Handler.php
, ganti bagian
public function render($request, Exception $e) { return parent::render($request, $e); }
menjadi
public function render($request, Exception $e) { if ($e instanceof \ErrorException) { return response()->view('errors.500', [], 500); } }
halaman yang akan ditampilkan untuk error 500 tersebut berada di resources/views/errors/500.blade.php
, ganti menjadi
<html> <title>Error - jaranguda.com</title> <head> <link href='http://fonts.googleapis.com/css?family=Nova+Square' rel='stylesheet' type='text/css'> <link rel="icon" type="image/png" href="http://media.jaranguda.com/2015/12/brightness-icon.png"> <style> body, html { text-align: center; font-size: 100px; font-family: 'Nova Square', 'cursive'; height: 100%; background: -webkit-linear-gradient(315deg, #222, #222); background: linear-gradient(135deg, #222, #222); overflow: hidden; color: #FF4136; } @-webkit-keyframes fade { 50% { opacity: 0.02; } } @keyframes fade { 50% { opacity: 0.02; } } a:link { text-decoration: none; } </style> </head> <body> <p> </p> <hr> <p>jaranguda.com</p> <hr> </body> </html>
sekarang coba buka link yang tidak ada contoh http://localhost/laravel/public/project-kosong
, akan muncul tampilan seperti gambar dibawah ini
Composer.json error