Support the ongoing development of Laravel.io →
Architecture
Last updated 2 years ago.
0

public function store()
		{
			$validation = $this->userValidationInterface->validate(Input::all());
			if($validation->fails())
				{
					return Redirect::to('users/create')->withInput()->withErrors($validation);

				}
			else
				{
					$this->userInterface->Store(Input::all());		
					return Redirect::to('users');
				}	
		}




<?php 

namespace Acme\Services;

use Acme\Interfaces\UserValidationInterface as UserValidationInterface;

class UserValidation  implements UserValidationInterface
	{
		public function validate($input)
			{
				$validator = \Validator::make(
				    array(
				        'name' => $input['name'],
				        'email' => $input['email'],
				        'password' => $input['password']
				    ),
				    array(
				        'name' => 'required',
				        'password' => 'required',
				        'email' => 'required|email|unique:users'
				    )
				);
				return $validator;	
			}
	}

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.