jsdecena / laracom

Laravel FREE E-Commerce Software
https://jsdecena.github.io/laracom
1.92k stars 862 forks source link

post method does not exist #254

Closed MehdiElMellali closed 3 years ago

MehdiElMellali commented 3 years ago

i try to login or register but i have same message problem :

 * @param  string  $subClass
     * @return array
     */
    public static function fromAction(array $action, $subClass = null)
    {
        $parameters = is_string($action['uses'])
                        ? static::fromClassMethodString($action['uses'])
                        : (new ReflectionFunction($action['uses']))->getParameters();

        return is_null($subClass) ? $parameters : array_filter($parameters, function ($p) use ($subClass) {
            return $p->getClass() && $p->getClass()->isSubclassOf($subClass);
        });
    }
Class App\Shop\Admins\Requests\LoginRequest does not exist
leor-w commented 3 years ago

I also encountered this problem. I used the code of Tag V1.6.0, but I did not find the directory app/Shop/Admin in the code, which was caused by missing this part of the code. I wonder where I can find the missing code

jsdecena commented 3 years ago

I just tried and I can't replicate this. Are you running it on docker?