PHP Classes

File: src/views/index.blade.php

Recommend this page to a friend!
  Classes of Thiago Przyczynski   PHP Wiki Routes   src/views/index.blade.php   Download  
File: src/views/index.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Wiki Routes
Route Wiki requests to access a Wiki Web service
Author: By
Last change:
Date: 2 years ago
Size: 996 bytes
 

Contents

Class file image Download
<html>
<head>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>
<body>
<h1>Wiki Routes</h1>
<div class="table-responsive">
    <table class="table table-striped table-bordered">
        <tr>
            <th>#</th>
            <th>Route</th>
            <th>Link</th>
            <th>Actions</th>
        </tr>
        @foreach ($items as $item)
            <tr>
                <td>{{ $item->id }}</td>
                <td>{{ $item->route }}</td>
                <td>{{ $item->link }}</td>
                <td></td>
            </tr>
        @endforeach
    </table>
    {{ $items->links() }}
</div>
</body>
</html>