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\common;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class CommonGridShape 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.common.common-grid-shape');
}
}

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\common;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class ComponentCard 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.common.component-card');
}
}

View File

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

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\common;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class PageBreadcrumb 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.common.page-breadcrumb');
}
}

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\common;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Preloader 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.common.preloader');
}
}

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\common;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class TableDropdown 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.common.table-dropdown');
}
}

View File

@@ -0,0 +1,26 @@
<?php
namespace App\View\Components\common;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class ThemeToggle 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.common.theme-toggle');
}
}