0

I am creating a modular application using nwidart package in Laravel 5.6. The command php artisan make:auth will create the necessary controllers and blades for authentication but I want to create a User module and move these things inside this module. Is it possible to do this?

Thanks in advance

M a m a D
  • 1,938
  • 2
  • 30
  • 61

1 Answers1

0

Yes it is possible . just use different controller and define the routes for the controller.and add use App\User; between Namespace and class Name.