This commit is contained in:
Mekan1206
2026-04-30 19:50:59 +05:00
parent 6dc6802445
commit a07c764dfe
142 changed files with 2709 additions and 1914 deletions

View File

@@ -1,16 +1,19 @@
@php
$collection = \App\Models\Shop\Product\Collection::first();
@endphp
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
@extends('web.themes.shella.layouts.app', [
'page_name' => $collection->name,
'body_class' => 'template-collection theme-css-animate'
])
<link rel="stylesheet" href="{{ asset('vendor/basement/basement.bundle.min.css') }}">
</head>
<body>
<h1>Test</h1>
@section('content')
<main id="MainContent">
@include('web.themes.shella.components.products.collection.grid-collection', [
'resource' => $collection
])
</main>
@stop
@auth
<x-basement::chat-box />
@endauth
<script src="{{ asset('vendor/basement/basement.bundle.min.js') }}"></script>
</body>
</html>