mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
22 lines
377 B
PHP
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'));
|
|
}
|
|
}
|