@extends('layouts.grid') @section('content') {{ HTML::script('js/datatables.js') }}

{{ trans('labels.entities') }}

@foreach ($entities as $entity) @endforeach
{{ link_to_route('newEntity' , '', '', array( 'class'=>'button-small add', 'alt'=>'add', 'title'=>'προσθήκη')) }} {{ trans('labels.id') }} {{ trans('labels.label') }} {{ trans('labels.desc') }} {{ trans('labels.entity') }}
{{ link_to_route('showEntity' , '', array($entity->id), array( 'class'=>'button-small show', 'alt'=>'show', 'title'=>'προβολή')) }} {{ link_to_route('editEntity', '', array($entity->id), array( 'class'=>'button-small upd', 'alt'=>'upd', 'title'=>'αλλαγή')) }} {{ link_to_route('deleteEntity', '', array($entity->id), array( 'class'=>'button-small del', 'alt'=>'del', 'title'=>'διαγραφή')) }} {{ substr('00000' . $entity->id, -5) }} {{ $entity->entity_name }} {{ $entity->entity_desc }} {{ $entity->parent_name }}
@endsection