/
var
/
www
/
html
/
plugin-techloyce
/
resources
/
views
/
Upload File
HOME
<!DOCTYPE html> <html lang="en"> <head> <title>Documents Template</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="canonical" href="/"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h1>Your Document templates</h1> <div class="list-group"> identifier : {{\Illuminate\Support\Facades\Session::get("identifier")}} @foreach($response as $res) <a href="{{route('getLibraryDocuments',[$res->id,\Illuminate\Support\Facades\Session::get("identifier")])}}" class="list-group-item">{{$res->name}}</a> @endforeach </div> </div> </body> </html>