@extends('layout.app')
@section('title')
{{ $product->title }}
@endsection
@section('css')
@stop
@section('content')
@include('parts.header-panel')
@include('parts.header')
@php
$currentLocale = LaravelLocalization::getCurrentLocale();
@endphp
{!! Translation::transText('order.completed.tnx', 'Dziękujemy! Zgłoszenie') !!} #{{ $order->id }} {!! Translation::transText('order.completed.sent', ' zostało pomyślnie wysłane.') !!}
{{ !empty($product->h1) ? $product->h1 : $product->title }}
@endsection
@section('javascript')
@stop