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
79532b3a
authored
2016-04-27 10:04:14 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
2b149560
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
resources/views/index.blade.php
resources/views/index.blade.php
View file @
79532b3
...
...
@@ -2,23 +2,21 @@
@
extends
(
'app'
)
@
section
(
'content'
)
<
form
action
=
"{{route('addentry', [])}}"
method
=
"post"
enctype
=
"multipart/form-data"
>
<
form
action
=
"add"
method
=
"post"
enctype
=
"multipart/form-data"
>
<
input
type
=
"file"
name
=
"filefield"
>
<
input
type
=
"submit"
>
</
form
>
<
h1
>
Pictures
list
</
h1
>
<
div
class
="
row
">
<ul class="
thumbnails
">
<ul>
@foreach(
$entries
as
$entry
)
<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>
<li>
{
{entry->filename}
}
</li>
@endforeach
</ul>
</div>
...
...
Please
register
or
sign in
to post a comment