Files
2024-02-12 22:54:20 -05:00

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'));
}
}