mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
20 lines
303 B
PHP
20 lines
303 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
class Rating extends Component
|
|
{
|
|
public $rating;
|
|
public function __construct($rating)
|
|
{
|
|
$this->rating = $rating;
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view(theme('components.rating'));
|
|
}
|
|
}
|