@extends('frontend.layouts.master') @section('page_title') {{ __('business.title') }} @endsection @section('head') @endsection @section('content-wrapper')

{{ __('business.title') }}

{{--
--}}

{{ __('business.filter-services') }}

@foreach ($sellers as $seller)
@include('frontend.business.logo')
{{ $seller['nom'] }} @if(isset($seller['nomSector']) && $seller['nomSector'] != '')

{{ $seller['nomSector'] }}

@endif @if($seller['entregaDesglosada'] != 0) @foreach($seller['monedes'] as $moneda) @if($moneda['entrega'] > 0) @if($moneda['tipus'] == 'euros_proximitat' || $moneda['tipus'] == 'euros_establiment')

{{ $moneda['entrega'] }}% {{ $moneda['descripcio'] }}

@else

{{ $moneda['entrega'] }} {{ $moneda['descripcio'] }}

@endif @endif @endforeach @endif @if($seller['adresa'] != '')

{{ $seller['adresa'] }}

@endif
@endforeach @if(!count($sellers))
{{ __('business.not-results') }}
@endif
@if(count($sellers) && $itemsPages > 24)
@endif
@push('scripts') @endpush @endsection