feat: 项目基础框架+配置+Kernel

This commit is contained in:
testadmin
2026-04-29 05:35:00 +08:00
parent 6ce7adcbfb
commit 9a6151fce3
5082 changed files with 437062 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use App\Users;
use App\UserReal;
class RealNameEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
protected $user;
protected $userReal;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Users $user, UserReal $user_real)
{
$this->user = $user;
$this->userReal = $user_real;
}
public function getUser()
{
return $this->user;
}
public function getUserReal()
{
return $this->userReal;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}