PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
web
/
layouts
/
Editing: base.blade.php
@php $gs = getGeneral(); @endphp <!DOCTYPE html> <html lang="en" @if(LaravelLocalization::getCurrentLocale() == 'ar') lang="ar" dir="rtl" @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" /> <title>{{$gs->title}} @yield('title')</title> <meta name="application-name" content="{{$gs->title}}"> <meta name="description" content="{{strip_tags($gs->description)}}"> <meta name="robots" content="index,follow"> <meta name="googlebot" content="index,follow"> <meta name="google" content="notranslate"> <meta name="bing-verification" content="{{strip_tags($gs->description)}}"> <meta name="rating" content="General"> <meta name="format-detection" content="telephone=no"> <link rel="icon" sizes="192x192" href="{{$gs->logo}}"> <meta itemprop="name" content="{{$gs->title}} @yield('title')"> <meta itemprop="description" content="{{strip_tags($gs->description)}}"> <meta itemprop="image" content="{{$gs->logo}}"> <meta property="og:type" content="website"> <meta property="og:title" content="{{$gs->title}}"> <meta property="og:image" content="{{$gs->logo}}"> <meta property="og:image:alt" content="{{$gs->title}}"> <meta property="og:description" content="{{$gs->description}}"> <meta property="og:site_name" content="{{$gs->title}}"> <meta name="twitter:site" content="{{config('app.url')}}"> <meta name="twitter:card" content="summary"> <meta name="twitter:url" content="{{config('app.url')}}"> <meta name="twitter:title" content="{{$gs->title}}"> <meta name="twitter:description" content="{{$gs->description}}"> <meta name="twitter:image" content="{{$gs->logo}}"> <meta name="twitter:image:alt" content="{{$gs->title}}"> <meta name="twitter:dnt" content="on"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <link href="{{ asset('backend/plugins/global/plugins.bundle.rtl.css') }}" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="{{asset('front/css/bootstrap-icons.min.css')}}" /> @if(LaravelLocalization::getCurrentLocale() == 'ar') <link rel="stylesheet" href="{{ asset('front/css/bootstrap.rtl.min.css') }}" /> <link rel="stylesheet" href="{{ asset('front/css/rtl/index.css') }}" /> @else <link rel="stylesheet" href="{{ asset('front/css/bootstrap.min.css') }}" /> <link rel="stylesheet" href="{{ asset('front/css/index.css') }}" /> @endif <link rel="stylesheet" href="{{ asset('front/css/animate.min.css') }}" /> <style> .toastr-error .toastr-message{color: #fff} .bi-chevron-left,.bi-arrow-right{ @if(LaravelLocalization::getCurrentLocale() == 'en') transform:rotate(180deg) @endif } .bi-chevron-right,.bi-arrow-right{ @if(LaravelLocalization::getCurrentLocale() == 'ar') transform:rotate(180deg) @endif } .plans-page { background-image: url({{asset('front/assets/plansbg.png')}}); } </style> @yield('css') </head> <body> @yield('navigration') @yield('body') @yield('footer') <script src="{{ asset('backend/plugins/global/plugins.bundle.js') }}"></script> <script src="{{ asset('front/js/jquery-3.6.0.min.js') }}"></script> <script src="{{ asset('front/js/bootstrap.bundle.min.js') }}"></script> <script src="{{ asset('front/js/wow.min.js') }}"></script> <script src="{{ asset('front/js/index.js') }}"></script> <script src="{{ asset('front/js/password.js') }}"></script> @include('global.flashes') @yield('js') <script> $("button[type='submit'],.form-submit").on("click" , function(){ $(this).attr("data-content" , $(this).html()); $(this).html(` <div class="spinner-border text-dark" role="status"> <span class="visually-hidden">Loading...</span> </div> `); setTimeout(() => { $(this).prop("disabled" , true) }, 50); }) function revertSubmitBtns() { $("button[type='submit'],.form-submit").each(function(){ $(this).html($(this).attr("data-content")); }) } </script> </body> </html>
SAVE
CANCEL