@extends('dashboard.app') @section('content')

Show Media Offering

Create
@if (count($media_offering) > 0)
@foreach ($media_offering as $index => $item) {{-- --}} @endforeach
# Title Country Description Image Settings
{{ $index + 1 }} @foreach (Helper::getLangs() as $local) {{ $item->getTranslation('title', $local) }}
@endforeach
@foreach (Helper::getLangs() as $local) {{ $item->getTranslation('country', $local) }}
@endforeach
@foreach (Helper::getLangs() as $local) {{ $item->getTranslation('description', $local) }}
@endforeach
@if ($item->image) Image @else No Image @endif @foreach ($item->getMedia('media_image') as $media) Image @endforeach
@else

Not Found any Sections..

@endif
@endsection