Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/mcoil.corals.io/resources/views/front/products/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/mcoil.corals.io/resources/views/front/products/product.blade.php
@extends('layouts.front.app')
@section('product_info')
    <title>{{ $product->name }} | {{ $category->name }} | {{ config('app.name') }}</title>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="description" content="{{ $product->description }}" />
    <meta name="keyword" content="{{ strtolower($product->name) }}, {{ strtolower($category->name) }}" />
    <meta property="og:type" content="product" />
    <meta property="og:title" content="{{ $product->name }} | {{ $category->name }}" />
    <meta property="og:description" content="{{ strip_tags($product->description) }}" />
    @if(!empty($product->cover))<meta property="og:image" content="{{ asset('storage/app/public/'.$product->cover) }}" />@endif
    <meta name="robots" content="index,follow" />
@endsection
@section('content')
@include('layouts.front.product-menu')
<div class="container">
    <div class="row">
        <div class="col-md-12">
            <ol class="breadcrumb">
                <li><a href="{{ route('home') }}"> <i class="fa fa-home"></i> Home</a></li>
                @if(isset($category))
                <li><a href="{{ route('front.category.slug', $category->slug) }}">{{ $category->name }}</a></li>
                @endif
                <li class="active">{{ $product->name }}</li>
            </ol>
        </div>
    </div>
    @include('layouts.front.product')
</div>
@include('layouts.front.call-to-action-footer')
@endsection

Spamworldpro Mini