@extends('layouts.app') @section('stylesheets') {!! Html::style('css/tours.list.css') !!} {!! Html::style('css/details.css') !!} @endsection @section('title') {{-- {!! $categorie->meta_title_en !!} --}}Bike Morocco @stop {{-- @section('keywords',$categorie->meta_key_en) @section('description',$categorie->meta_description_en) --}} @section('content')
Home Bikes
@foreach ($subcategories as $element) @endforeach
@if (count($bikes)) @foreach ($bikes as $bike) @if ($loop->index%3 == 0 && !$loop->first)
@endif @if ($loop->index%3 == 0 && !$loop->last)
@endif
{{ ucwords(strtolower($bike->category_bike->name)) }}
{{ ucwords(strtolower($bike->title)) }}
From {{ $bike->rental_price->p1 }} € Info

@endforeach @endif
@endsection @section('scripts') {!! Html::script('assets/js/pages/details-page.js') !!} @endsection @section('footer') @if(count($footers) > 0) @foreach ($footers as $footer)
  • {{ $footer->title }}
  • @endforeach @endif @stop