Bkwld\Croppa\URL::routePattern PHP Method

routePattern() public method

https://regex101.com/r/kO6kL1/1 In the Laravel router, this gets wrapped with some extra regex before the matching happnens and for the pattern to match correctly, the final .* needs to exist. Otherwise, the lookaheads have no length and the regex fails https://regex101.com/r/xS3nQ2/1
public routePattern ( ) : string
return string
    public function routePattern()
    {
        return sprintf("(?=%s)(?=%s).+", $this->config['path'], self::PATTERN);
    }