@extends('panel.layout.base') @section('title',$title) @section('content') {!! \App\Metha\TMethaForm::open([ 'method' => 'POST', 'action' => $action ]) !!} @csrf
@if (\Session::has('success'))
@elseif (\Session::has('warning'))
@endif
@foreach(\App\Models\Language::all()->where('status','Y')->toArray() as $index => $item)
@foreach($translateData as $indexTranslate => $itemTranslate)
@foreach($itemTranslate['fields'] as $field) @if($field['type'] == 'text')
@elseif($field['type'] == 'col-text')
@endif @endforeach
@endforeach
@endforeach
{!! \App\Metha\TMethaForm::close() !!} @endsection @section('script') @endsection