Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
pdf-customizer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
f068b784
authored
2016-04-27 10:40:52 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
d
1 parent
79532b3a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
resources/views/index.blade.php → resources/views/fileentries/index.blade.php
resources/views/index.blade.php
→
resources/views/
fileentries/
index.blade.php
100644 → 100755
View file @
f068b78
<?php
@extends('app')
@section('content')
<
form
action
=
"add"
method
=
"post"
enctype
=
"multipart/form-data"
>
<form
action=
"{{route('addentry', [])}}"
method=
"post"
enctype=
"multipart/form-data"
>
<input
type=
"file"
name=
"filefield"
>
<input
type=
"submit"
>
</form>
<h1>
Pictures list
</h1>
<
div
class
="
row
">
<ul>
<div
class=
"row"
>
<ul
class=
"thumbnails"
>
@foreach($entries as $entry)
<li>
{
{entry->filename}
}
</li>
<div
class=
"col-md-2"
>
<div
class=
"thumbnail"
>
<img
src=
"{{route('getentry', $entry->filename)}}"
alt=
"ALT NAME"
class=
"img-responsive"
/>
<div
class=
"caption"
>
<p>
{{$entry->original_filename}}
</p>
</div>
</div>
</div>
@endforeach
</ul>
</div>
...
...
Please
register
or
sign in
to post a comment