@extends('admin/master') @section('content')
{{ Form::select('direction', array('asc' => 'Asc', 'desc' => 'Desc'), Request::get('direction'),array('class'=>'form-control')) }}
@foreach($images as $image) @if($image and $image->user) @endif @endforeach
# Original Name Title Uploaded By Add/Remove Created At Action
{{ $image->image_name }}.{{ $image->type }} {{ str_limit($image->title,10) }} {{ str_limit($image->user->fullname,15) }} {{ $image->created_at->toISO8601String() }}
{{ $images->links() }} @endsection