104 lines
2.7 KiB
PHP
104 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\peternak;
|
|
use App\Models\PeternakUser;
|
|
use App\Providers\RouteServiceProvider;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Auth\RegistersUsers;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use DateTime;
|
|
|
|
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 = RouteServiceProvider::HOME;
|
|
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('guest');
|
|
}
|
|
|
|
/**
|
|
* Get a validator for an incoming registration request.
|
|
*
|
|
* @param array $data
|
|
* @return \Illuminate\Contracts\Validation\Validator
|
|
*/
|
|
protected function validator(array $data)
|
|
{
|
|
return Validator::make($data, [
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
|
|
'password' => ['required', 'string', 'min:8', 'confirmed'],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Create a new user instance after a valid registration.
|
|
*
|
|
* @param array $data
|
|
* @return \App\Models\User
|
|
*/
|
|
protected function create(array $data)
|
|
{
|
|
$role = 0;
|
|
$user = User::create([
|
|
'name' => $data['name'],
|
|
'email' => $data['email'],
|
|
'password' => Hash::make($data['password']),
|
|
'is_admin' => $role,
|
|
]);
|
|
|
|
$dt = new DateTime();
|
|
$id_peternak=$dt->format('mdHis ');
|
|
|
|
$id_user = $user->id;
|
|
$nama_user = $user->name;
|
|
$email_user = $user->email;
|
|
$pass_user = $user->password;
|
|
$fotodefault = 'default.jpg';
|
|
|
|
PeternakUser::create([
|
|
'id_peternak' => $id_peternak,
|
|
'namadepan_peternak' => $nama_user,
|
|
'namabelakang_peternak' => '',
|
|
'no_hp' => '',
|
|
'jenis_kelamin' => '',
|
|
'alamat' => '',
|
|
'foto_peternak' => $fotodefault,
|
|
'email_peternak' => $email_user,
|
|
'id' => $id_user,
|
|
]);
|
|
|
|
return $user;
|
|
|
|
}
|
|
}
|