@extends('commons.layouts.admin') @section('content') @include('_version_01.commons.layouts.partials._alert')

{{App\Language::trans('Listing Information')}}

@foreach($cols as $col) @if($col == 'id') @elseif($col == 'name' || $col == 'tel' || $col == 'email' || $col == 'logo_photo_path') @endif @endforeach @foreach($model as $index => $row) @foreach($row->toArray() as $key => $value) @if($key == 'name' || $key == 'tel' || $key == 'email') @elseif($key == 'logo_photo_path') @endif @endforeach @endforeach
#{{App\Language::trans(ucwords(str_replace('_', ' ', $col)))}}{{App\Language::trans('Action')}}
{{$index+1}}{{$value}} {{App\Language::trans('Edit')}} |
@endsection @section('script') @endsection