- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
93 lines
2.9 KiB
PHP
93 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Events\CustomerCreated as CustomerCreatedEvent;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\StoreCustomerRequest;
|
|
use App\Http\Requests\Admin\UpdateCustomerRequest;
|
|
use App\Models\Customer;
|
|
use App\Services\GeocodingService;
|
|
use App\Services\NotificationLogService;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\View\View;
|
|
|
|
class CustomerController extends Controller
|
|
{
|
|
public function index(Request $request): View
|
|
{
|
|
$customers = Customer::query()
|
|
->with('objects')
|
|
->when($request->search, function ($query, $search) {
|
|
$query->where(function ($q) use ($search) {
|
|
$q->where('name', 'like', "%{$search}%")
|
|
->orWhereHas('objects', fn ($obj) => $obj->where('city', 'like', "%{$search}%"));
|
|
});
|
|
})
|
|
->orderBy('name')
|
|
->paginate(25)
|
|
->withQueryString();
|
|
|
|
return view('admin.customers.index', compact('customers'));
|
|
}
|
|
|
|
public function create(): View
|
|
{
|
|
return view('admin.customers.create');
|
|
}
|
|
|
|
public function store(StoreCustomerRequest $request): RedirectResponse
|
|
{
|
|
$customer = Customer::create($request->validated());
|
|
|
|
CustomerCreatedEvent::dispatch($customer);
|
|
|
|
return redirect()
|
|
->route('admin.customers.index')
|
|
->with('success', __('customer.flash_created', ['name' => $customer->name]));
|
|
}
|
|
|
|
public function edit(Customer $customer): View
|
|
{
|
|
return view('admin.customers.edit', compact('customer'));
|
|
}
|
|
|
|
public function update(UpdateCustomerRequest $request, Customer $customer): RedirectResponse
|
|
{
|
|
$customer->update($request->validated());
|
|
|
|
return redirect()
|
|
->route('admin.customers.index')
|
|
->with('success', __('customer.flash_updated', ['name' => $customer->name]));
|
|
}
|
|
|
|
public function geocode(Request $request, GeocodingService $geocoding): JsonResponse
|
|
{
|
|
$request->validate([
|
|
'street' => ['required', 'string'],
|
|
'zip' => ['required', 'string'],
|
|
'city' => ['required', 'string'],
|
|
]);
|
|
|
|
$result = $geocoding->resolve($request->street, $request->zip, $request->city);
|
|
|
|
if ($result) {
|
|
return response()->json($result);
|
|
}
|
|
|
|
return response()->json(['error' => __('customer.geocode_failed')], 422);
|
|
}
|
|
|
|
public function destroy(Customer $customer, NotificationLogService $notificationLogService): RedirectResponse
|
|
{
|
|
$name = $customer->name;
|
|
$notificationLogService->anonymizeForCustomer($customer);
|
|
$customer->delete();
|
|
|
|
return redirect()
|
|
->route('admin.customers.index')
|
|
->with('success', __('customer.flash_deleted', ['name' => $name]));
|
|
}
|
|
}
|