@extends('layouts.grid') @section('content')

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

@foreach ($links as $linked) @endforeach
{{ link_to_route('newAttchment' , '', '', array( 'class'=>'button-small add', 'alt'=>'add', 'title'=>'προσθήκη')) }} {{ trans('labels.id') }} {{ trans('labels.desc') }} {{ trans('labels.type') }} {{ trans('labels.url') }} {{ trans('labels.name') }} {{ trans('labels.date') }}
{{ link_to_route('showattachment' , '', array($linked->id), array( 'class'=>'button-small show', 'alt'=>'show', 'title'=>'προβολή')) }} {{ link_to_route('editattachment', '', array($linked->id), array( 'class'=>'button-small upd', 'alt'=>'upd', 'title'=>'αλλαγή')) }} {{ link_to_route('deleteattachment', '', array($linked->id), array( 'class'=>'button-small del', 'alt'=>'del', 'title'=>'διαγραφή')) }} {{ substr('00000' . $attachment->id, -5) }} {{ $linked->link_desc }} {{ $linked->link_type }} {{ $linked->link_url }} {{ $linked->link_name }} {{ $linked->link_date }}
@endsection