Skip to content
  • 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
Switch branch/tag
  • pdf-customizer
  • resources
  • views
  • index.blade.php
  • Jeff Balicki's avatar
    commit · 79532b3a
    79532b3a Browse Files
    Jeff Balicki committed 2016-04-27 10:04:14 -0400
index.blade.php 414 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php
@extends('app')
@section('content')




    <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>
            @foreach($entries as $entry)
                <li>{{entry->filename}}</li>
            @endforeach
        </ul>
    </div>

@endsection