/
var
/
www
/
html
/
stage
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
/
Exceptions
/
Upload File
HOME
<?php namespace Illuminate\Routing\Exceptions; use Exception; class UrlGenerationException extends Exception { /** * Create a new exception for missing route parameters. * * @param \Illuminate\Routing\Route $route * @return static */ public static function forMissingParameters($route) { return new static("Missing required parameters for [Route: {$route->getName()}] [URI: {$route->uri()}]."); } }