@extends('cms.application') @section('content')
List Of Translation
@if(count($translations)) {!! Form::open(array('route' => 'cms.translations.update', 'method' => 'POST')) !!}
{!! Form::submit('Save Changes', array('class' => 'btn btn-info')) !!} Add New
@foreach($translations as $key => $value) @php $id = $value['id']; $keyword = $value['keyword'] @endphp {!! deleteUnusedFields(array('id','created_at','updated_at','flag','slug','user_id','keyword'),$value) !!} @foreach($value as $name=>$val) @endforeach @endforeach
# Keysword En Sw
{!! $key +1 !!} @if(Request::get('aa')=='wrath') {!! link_to_route('cms.translations.destroy', "", array($id,'aa'=>Request::get('aa')), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'ion ion-android-delete item-delete')) !!} @endif {!!$keyword!!} {!!$keyword!!} {!! Form::text("keyword[$id][$name]", $val ,['class'=>'form-control']) !!} {!!$val!!}
{!! Form::close() !!} @else
@endif
@stop