| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/app/Http/Controllers/ |
Upload File : |
<?php
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\NotificationMessage;
use App\Http\Requests\BoardcastMessagees\CreateRequest as BoardcastMessageCreateRequest;
use App\Http\Requests\BoardcastMessagees\ListRequest as BoardcastMessageListRequest;
// use App\Http\Requests\BoardcastMessagees\OpenBoxRequest as BoardcastMessageOpenBoxRequest;
use App\Http\Services\NotificationService;
use Auth;
class BoardcastMessageController extends Controller
{
public function __construct(
NotificationService $notificationService
)
{
$this->notificationService = $notificationService;
}
public function boardcastMessageList(BoardcastMessageListRequest $request)
{
$payload = $request->validated();
$boardcastMessages = $this->notificationService->boardcastMessageList( $payload );
return self::successResponse('Success', $boardcastMessages );
}
public function boardcastMessageCreate(BoardcastMessageCreateRequest $request)
{
$payload = $request->validated();
$payload['type_id'] = NotificationMessage::BOARDCAST;
$boardcastMessage = $this->notificationService->createBoardcast( $payload, $sendNow = true );
return self::successResponse('Success',$boardcastMessage);
}
// public function boardcastMessageOpenBox(BoardcastMessageOpenBoxRequest $request)
// {
// $payload = $request->validated();
// $boardcastMessages = $this->notificationService->boardcastMessageOpenBox( $payload );
// return self::successResponse('Success', $boardcastMessages);
// }
}