@extends('admin.layouts.master') @section('content')

{{ trans('app.blog_translations') }}

@can('update', $blog) {{ trans('app.form.add_translate') }} @endcan
@foreach ($blog_translations as $translation) @endforeach
{{ trans('app.title') }} {{ trans('app.form.excerpt') }} {{ trans('app.language') }} {{ trans('app.created_at') }}  
{!! $translation->title !!} {!! Str::limit($translation->excerpt, 50) !!} {!! $translation->language->language !!} {{ $translation->created_at->toFormattedDateString() }} @can('update', $blog)   {!! Form::open(['route' => ['admin.utility.blog.delete.translate', $translation->id], 'method' => 'delete', 'class' => 'data-form']) !!} {!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.trash'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!} {!! Form::close() !!} @endcan
@endsection