@extends('cms.layout.base') @section('title', 'Blog') @section('content')
 Blog Post

Add New View Blog @foreach($blog as $index => $service) @endforeach
ID En Title En Description Ar Title Ar Description Fr Title Fr Description Ru Title Ru Description Sp Title Sp Description Post Image Action
{{ $index + 1 }} {{ $service->en_title }} {!! str_limit($service->en_description, 80) !!} {{ $service->ar_title }} {!! str_limit($service->ar_description, 80) !!} {{ $service->fr_title }} {!! str_limit($service->fr_description, 80) !!} {{ $service->ru_title }} {!! str_limit($service->ru_description, 80) !!} {{ $service->sp_title }} {!! str_limit($service->sp_description, 80) !!} @if($service->image) @else N/A @endif
{{ csrf_field() }} {{ method_field('DELETE') }}
@endsection