first commit

This commit is contained in:
2025-12-21 08:03:18 +07:00
commit 7c746f776a
300 changed files with 24836 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\ecommerce;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class CustomerDemographic extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.ecommerce.customer-demographic');
}
}

View File

@@ -0,0 +1,20 @@
<?php
namespace App\View\Components\ecommerce;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class EcommerceMetrics extends Component
{
public function __construct()
{
//
}
public function render(): View|Closure|string
{
return view('components.ecommerce.ecommerce-metrics');
}
}

View File

@@ -0,0 +1,20 @@
<?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');
}
}

View File

@@ -0,0 +1,24 @@
<?php
namespace App\View\Components\ecommerce;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class MonthlyTarget extends Component
{
public function __construct()
{
//
}
public function render(): View|Closure|string
{
return view('components.ecommerce.monthly-target');
}
}

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\ecommerce;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class RecentOrders extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.ecommerce.recent-orders');
}
}

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\ecommerce;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class StatisticsChart extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.ecommerce.statistics-chart');
}
}