restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 17:02:52 +05:00
commit 77cf56a348
4317 changed files with 1397107 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
<?php
namespace App\View\Components;
use App\Models\Category;
use Illuminate\View\Component;
class CategoriesHeader extends Component
{
protected $categories;
/**
* Create a new component instance.
*
* @param Category $category
*/
public function __construct(Category $category)
{
$this->categories = $category;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\View\View|string
* @throws \Exception
*/
public function render()
{
$categories = $this->categories->with(['parents' => function ($parent) {
return $parent->select('id', 'name', 'parent_id', 'slug', 'published', 'image', 'position')
->orderBy('position', 'asc')->with(['parents' => function ($parent) {
return $parent->select('id', 'name', 'parent_id', 'slug', 'published', 'position')
->orderBy('position', 'asc');
}]);
}])
->orderBy('position', 'asc')
->whereNull('parent_id')
->where('published', true)
->get(['id', 'name', 'slug', 'image']);
$categories->map(function ($category) {
$category->hover = false;
});
return view('components.categories-header', compact('categories'));
}
}

View File

@@ -0,0 +1,32 @@
<?php
namespace App\View\Components;
use App\Models\Page;
use Illuminate\View\Component;
class SinglePages extends Component
{
public $type;
/**
* Create a new component instance.
*
* @param $type
*/
public function __construct($type)
{
$this->type = $type;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\View\View|string
*/
public function render()
{
$page = Page::where('type', $this->type)->first();
return view('components.single-pages', compact('page'));
}
}