@extends('layouts.app') @section('page_title', __('products.title')) @section('page_description', __('products.description')) @section('page_keywords', __('products.keywords')) @section('og_title', __('products.title')) @section('og_description', __('products.description')) @section('twitter_title', __('products.title')) @section('twitter_description', __('products.description')) @section('page_content')

{{ isset($service) ? $service->name : __('products.all_products') }}

@if(isset($service))
@endif
@forelse($products as $product)
{{ $product->name }}

{!! $product->description !!}

@empty
@lang('partials.no_products')
@endforelse

@lang('products.order.call')

@lang('products.order.heading2')

  • @lang('products.order.reason1')
  • @lang('products.order.reason2')
  • @lang('products.order.reason3')
@csrf

@lang('products.order.title')

@endsection @section('scripts') @endsection