aurelien75000
aurelien75000

Reputation: 25

Route.php line 279: Class App\Http\Controllers\PaymentController does not exist

I'm trying to install payment with Paypal API on my website using this tutorial: https://www.youtube.com/watch?v=q5Xb5r4MUB8

I'm getting an error when i wantto access this URL: /payment

Route.php line 279: Class App\Http\Controllers\PaymentController does not exist

I've checked that the PaymentController is actually in App\Http\Controller I've tried a composer dumpautoload and a php artisan optimize

Something wierd is that not any class from \app are referenced in vendor/composer/autoload_classmap.php...

Here is the begining of my PaymentController.php file:

<?


namespace App\Http\Controllers;

use Paypalpayment;

class PaymentController extends Controller {

Upvotes: 0

Views: 2535

Answers (1)

Dov Benyomin Sohacheski
Dov Benyomin Sohacheski

Reputation: 7732

Change your opening file tags to <?php

Upvotes: 1

Related Questions