Files
aroginhealthcare/app/Services/ContactUsService.php
2025-08-17 16:23:14 +05:45

21 lines
443 B
PHP

<?php
namespace App\Services;
use Modules\ContactUs\app\Repositories\ContactUsRepository;
class ContactUsService
{
protected $contactUsRepository;
public function __construct(ContactUsRepository $contactUsRepository)
{
$this->contactUsRepository = $contactUsRepository;
}
public function storeContactUs(array $validated)
{
return $this->contactUsRepository->storeContactUsList($validated);
}
}