<?php
namespace App\View\Components;
use Illuminate\View\Component;
class RecentEvent extends Component
{
public $recentEvents;
public function __construct($recentEvents)
{
$this->recentEvents = $recentEvents;
}
public function render()
{
return view('components.recent-event');
}
}