mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
namespace Modules\GeneralSetting\Services;
|
|
|
|
use Illuminate\Support\Facades\Validator;
|
|
use \Modules\GeneralSetting\Repositories\SmsTemplateRepository;
|
|
use Illuminate\Support\Arr;
|
|
|
|
class SmsTemplateService
|
|
{
|
|
protected $smsTemplateRepository;
|
|
|
|
public function __construct(SmsTemplateRepository $smsTemplateRepository)
|
|
{
|
|
$this->smsTemplateRepository = $smsTemplateRepository;
|
|
}
|
|
|
|
public function getSmsTemplates()
|
|
{
|
|
return $this->smsTemplateRepository->getSmsTemplates();
|
|
}
|
|
|
|
public function getSmsTemplateTypes()
|
|
{
|
|
return $this->smsTemplateRepository->getSmsTemplateTypes();
|
|
}
|
|
|
|
public function createTemplate($data)
|
|
{
|
|
foreach ($data['reciepnt_type'] as $key => $reciepnt) {
|
|
if ($reciepnt == "customer") {
|
|
$data['reciepnt'][$key] = "customer";
|
|
}elseif ($reciepnt == "seller") {
|
|
$data['reciepnt'][$key] = "seller";
|
|
}
|
|
}
|
|
return $this->smsTemplateRepository->createTemplate($data);
|
|
}
|
|
|
|
public function updateSmsTemplate($data, $id)
|
|
{
|
|
foreach ($data['reciepnt_type'] as $key=> $reciepnt) {
|
|
if ($reciepnt == "customer") {
|
|
$data['reciepnt'][$key] = "customer";
|
|
}elseif ($reciepnt == "seller") {
|
|
$data['reciepnt'][$key] = "seller";
|
|
}
|
|
}
|
|
return $this->smsTemplateRepository->updateSmsTemplate($data, $id);
|
|
}
|
|
|
|
public function updateSmsTemplateStatus($data)
|
|
{
|
|
return $this->smsTemplateRepository->updateSmsTemplateStatus($data);
|
|
}
|
|
|
|
public function find($id)
|
|
{
|
|
return $this->smsTemplateRepository->find($id);
|
|
}
|
|
}
|