1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace App\Http\Controllers\Auth;
- use App\Shop\Customers\Customer;
- use App\Http\Controllers\Controller;
- use App\Shop\Customers\Repositories\Interfaces\CustomerRepositoryInterface;
- use App\Shop\Customers\Requests\CreateCustomerRequest;
- use App\Shop\Customers\Requests\RegisterCustomerRequest;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Validator;
- use Illuminate\Foundation\Auth\RegistersUsers;
- class RegisterController extends Controller
- {
- /*
- |--------------------------------------------------------------------------
- | Register Controller
- |--------------------------------------------------------------------------
- |
- | This controller handles the registration of new users as well as their
- | validation and creation. By default this controller uses a trait to
- | provide this functionality without requiring any additional code.
- |
- */
- use RegistersUsers;
- /**
- * Where to redirect users after registration.
- *
- * @var string
- */
- protected $redirectTo = '/accounts';
- private $customerRepo;
- /**
- * Create a new controller instance.
- * @param CustomerRepositoryInterface $customerRepository
- */
- public function __construct(CustomerRepositoryInterface $customerRepository)
- {
- $this->middleware('guest');
- $this->customerRepo = $customerRepository;
- }
- /**
- * Create a new user instance after a valid registration.
- *
- * @param array $data
- * @return Customer
- */
- protected function create(array $data)
- {
- return $this->customerRepo->createCustomer($data);
- }
- /**
- * @param RegisterCustomerRequest $request
- * @return \Illuminate\Http\RedirectResponse
- */
- public function register(RegisterCustomerRequest $request)
- {
- $customer = $this->create($request->except('_method', '_token'));
- Auth::login($customer);
- return redirect()->route('accounts');
- }
- }
|