migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
@if (app()->getLocale() == 'ar')
<html lang="ar" dir="rtl">
@else
<html lang="en" dir="auto">
@endif
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>
@hasSection('title')
@yield('title') |
@endif {{ get_option('general')['title'] ?? config('app.name') }}
</title>
@include('layouts.web.partials.css')
</head>
<body>
@if (request()->is('/'))
@include('layouts.web.partials.header')
@else
@include('layouts.web.partials.common_header')
@endif
@yield('main_content')
@include('layouts.web.partials.footer')
<input type="hidden" id="payment_success" value="{{ session('payment_success') }}">
@include('layouts.web.partials.script')
</body>
</html>