mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 05:45:26 +07:00
21 lines
348 B
PHP
21 lines
348 B
PHP
<?php
|
|
|
|
namespace App\View\Components\ecommerce;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class MonthlySale extends Component
|
|
{
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function render(): View|Closure|string
|
|
{
|
|
return view('components.ecommerce.monthly-sale');
|
|
}
|
|
}
|