Edit File: exception-render-report.stub
<?php namespace {{ namespace }}; use Exception; class {{ class }} extends Exception { /** * Report the exception. * * @return bool|null */ public function report() { // } /** * Render the exception as an HTTP response. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function render($request) { // } }
Back to File Manager