api code global jain

This commit is contained in:
Abhishek Mali
2025-11-05 10:37:10 +05:30
commit 52fe7e2bec
2834 changed files with 1784903 additions and 0 deletions

37
app/Events/Report.php Normal file
View File

@@ -0,0 +1,37 @@
<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class Report
{
use SerializesModels;
/**
* @var
*/
public $user;
public $type;
public $reportedFor;
public $reportSubject;
public $description;
/**
* Report constructor.
* @param $user
* @param $type
* @param $reportedFor
* @param $reportSubject
* @param $description
*
*/
public function __construct($user, $type, $reportedFor, $reportSubject, $description)
{
$this->user = $user;
$this->type = $type;
$this->reportedFor = $reportedFor;
$this->reportSubject = $reportSubject;
$this->description = $description;
}
}

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class UserConfirmation
{
use SerializesModels;
/**
* @var
*/
public $user;
public $otp;
/**
* UserConfirmation constructor.
* @param $user
* @param $otp
*/
public function __construct($user,$otp)
{
$this->user = $user;
$this->otp = $otp;
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class WrongChaturmas
{
use SerializesModels;
/**
* @var
*/
public $user;
public $santID;
public $chaturmasID;
public $description;
/**
* WrongChaturmas constructor.
* @param $user
*/
public function __construct($user, $santID, $chaturmasID, $description)
{
$this->user = $user;
$this->santID = $santID;
$this->chaturmasID = $chaturmasID;
$this->description = $description;
}
}