@extends('main') @section('styles') @endsection @section('page-title') @endsection @section('content')
{!! csrf_field() !!}
{!! __('Item title') !!}

{!! $product->title !!}

{{ __('Product status') }}
@if ($product->stock > 0) {!! __('Availability') !!} @else {!! __('Not available') !!} @endif
{!! __('The Price') !!}

@if ($product->offer)

{!! $product->offer !!} {!! $product->price2 !!}{!! __('EGP') !!}
{!! optional($product->unit)->title !!}
@else
{!! $product->price2 !!} {!! __('EGP') !!}
{!! optional($product->unit)->title !!}
@endif

{!! __('Quantity') !!}
@widget('MobileApp\RelatedProducts',['cat_id' => $product->category_id]) @section('show-qr_code') {!! QrCode::size(200)->backgroundColor(239, 242, 247)->generate(route('go.product.qrcode',[$product->id])); !!} @endsection @section('qr_product')
  • {!! __('QR code') !!}
  • @endsection
    @endsection @section('toolbar2')
    {!! csrf_field() !!}
    {!! $product->title !!}
    @if ($product->offer) {!! $product->offer !!} {!! __('Pound') !!} @else {!! $product->price2 !!} {!! __('Pound') !!} @endif
    @endsection @section('scripts') @endsection