|
|
|
|
22
|
// save data to db
|
22
|
// save data to db
|
23
|
public function insertData(StoreRequest $request)
|
23
|
public function insertData(StoreRequest $request)
|
24
|
{
|
24
|
{
|
|
|
25
|
+ dd(123);
|
25
|
$name = $this->safeEncrypt($request->input('name', 'name'), 'arm');
|
26
|
$name = $this->safeEncrypt($request->input('name', 'name'), 'arm');
|
26
|
$email = $this->safeEncrypt($request->input('email', 'email'), 'arm');
|
27
|
$email = $this->safeEncrypt($request->input('email', 'email'), 'arm');
|
27
|
$mobile = $this->safeEncrypt($request->input('mobile', 'mobile'), 'arm');
|
28
|
$mobile = $this->safeEncrypt($request->input('mobile', 'mobile'), 'arm');
|