Files
wticreatorstudio/app/View/Components/RandomAdsComponent.php
Fritz Ramirez 10d0c477c8 Initial commit
2024-02-12 22:54:20 -05:00

22 lines
377 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class RandomAdsComponent extends Component
{
public function __construct()
{
//
}
public function render()
{
$ads = \Modules\FrontendCMS\Entities\SubscribeContent::find(4);
return view(theme('components.random-ads-component'),compact('ads'));
}
}