Edit File: ContactController.php
<?php namespace App\Http\Controllers\Admin; use App\Services\Entity\ContactService; use Illuminate\Http\JsonResponse; class ContactController extends BaseController { public function __construct(ContactService $service) { parent::__construct($service); } public function replay($id): JsonResponse { return $this->service->replay($this->request, $id); } }
Back to File Manager