@extends('front.layouts.base') @section('content')

{{ __('Détails projet') }}

  • Home
  • {{ __('Détails projet') }}
{{ __($project->city) }}

{{ __($project->name) }}

{{ $project->description }}

{{ __('Informations Essentiel') }}

  • {{ __('Chambre à coucher') }}

    {{ $project->number_of_bedrooms }}
  • {{ __('Salle de bains') }}

    {{ $project->number_of_bathrooms }}
  • {{ __('Surface') }}

    {{ __('à partir de ') }} {{ $project->square_surface }}
  • {{ __('Total-Chambre') }}

    {{ $project->total_rooms }}
    @foreach($project->left_surroundings as $l_surrounding)
  • {{ __($l_surrounding['item_name']) }}
  • @endforeach
    @foreach($project->right_surroundings as $r_surrounding)
  • {{ __($r_surrounding['item_name']) }}
  • @endforeach

{{ __('Catégories') }}

@endsection