@extends('website.layouts.app') @section('content')
@if (count($solutions) > 0) @foreach ($solutions as $index => $solution) @if ($index % 2 == 0)
{{ str_replace('-', ' ', pathinfo(substr($solution->image,11), PATHINFO_FILENAME)) }}

{{ $solution->title_en }}

@if ($solution->category) {{ $solution->category->title_en }} @endif

{!! $solution->description_en !!}

@else

{{ $solution->title_en }}

@if ($solution->category) {{ $solution->category->title_en }} @endif

{!! $solution->description_en !!}

{{ str_replace('-', ' ', pathinfo(substr($solution->image,11), PATHINFO_FILENAME)) }}
@endif @endforeach @endif
@endsection