mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Invoice;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Validation\Rules\In;
|
|
|
|
class CustomerController extends Controller
|
|
{
|
|
//
|
|
public function __construct()
|
|
{
|
|
if (!auth('customer')->check()) {
|
|
return redirect()->route('client.sign-in');
|
|
}
|
|
}
|
|
|
|
public function profile()
|
|
{
|
|
$area = 'customer';
|
|
$title = __("Profile");
|
|
$subtitle = 'You information';
|
|
return view('client.default-list', compact('area', 'title', 'subtitle'));return auth('customer')->user();
|
|
}
|
|
|
|
public function save(Request $request){
|
|
$request->validate([
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'email' => ['required', 'string', 'email', 'max:255'],
|
|
'mobile' => ['required', 'string', 'max:255'],
|
|
'password' => ['nullable', 'string', 'min:8', 'confirmed'],
|
|
]);
|
|
|
|
$customer = auth('customer')->user();
|
|
$customer->name = $request->name;
|
|
$customer->email = $request->email;
|
|
$customer->mobile = $request->mobile;
|
|
if ($request->has('password') && trim($request->input('password')) != ''){
|
|
$customer->password = bcrypt($request->password);
|
|
}
|
|
$customer->save();
|
|
return redirect()->route('client.profile')->with('message', __('Profile updated successfully'));
|
|
}
|
|
|
|
public function invoice(Invoice $invoice){
|
|
return $invoice;
|
|
}
|
|
|
|
}
|