115 lines
3.1 KiB
PHP
115 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Modals;
|
|
|
|
use App\Abstracts\Http\Controller;
|
|
use App\Http\Requests\Common\Contact as Request;
|
|
use App\Models\Common\Contact;
|
|
use App\Jobs\Common\CreateContact;
|
|
use App\Jobs\Common\UpdateContact;
|
|
|
|
class Customers extends Controller
|
|
{
|
|
/**
|
|
* Instantiate a new controller instance.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// Add CRUD permission check
|
|
$this->middleware('permission:create-sales-customers')->only('create', 'store', 'duplicate', 'import');
|
|
$this->middleware('permission:read-sales-customers')->only('index', 'show', 'edit', 'export');
|
|
$this->middleware('permission:update-sales-customers')->only('update', 'enable', 'disable');
|
|
$this->middleware('permission:delete-sales-customers')->only('destroy');
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function create()
|
|
{
|
|
$contact_selector = false;
|
|
|
|
if (request()->has('contact_selector')) {
|
|
$contact_selector = request()->get('contact_selector');
|
|
}
|
|
|
|
$html = view('modals.customers.create', compact('contact_selector'))->render();
|
|
|
|
return response()->json([
|
|
'success' => true,
|
|
'error' => false,
|
|
'message' => 'null',
|
|
'html' => $html,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$request['enabled'] = 1;
|
|
|
|
$response = $this->ajaxDispatch(new CreateContact($request));
|
|
$this->ajaxDispatch(new UpdateContact($customer, $request));
|
|
|
|
if ($response['success']) {
|
|
$response['message'] = trans('messages.success.added', ['type' => trans_choice('general.customers', 1)]);
|
|
}
|
|
|
|
return response()->json($response);
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param Contact $customer
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function edit(Contact $customer)
|
|
{
|
|
$contact_selector = false;
|
|
|
|
if (request()->has('contact_selector')) {
|
|
$contact_selector = request()->get('contact_selector');
|
|
}
|
|
|
|
$html = view('modals.customers.edit', compact('customer', 'contact_selector'))->render();
|
|
|
|
return response()->json([
|
|
'success' => true,
|
|
'error' => false,
|
|
'message' => 'null',
|
|
'html' => $html,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param Contact $customer
|
|
* @param Request $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function update(Contact $customer, Request $request)
|
|
{
|
|
$request['enabled'] = 1;
|
|
|
|
$response = $this->ajaxDispatch(new UpdateContact($customer, $request));
|
|
|
|
if ($response['success']) {
|
|
$response['message'] = trans('messages.success.updated', ['type' => trans_choice('general.customers', 1)]);
|
|
}
|
|
|
|
return response()->json($response);
|
|
}
|
|
}
|