PHP Classes

File: resources/views/posts/index.blade.php

Recommend this page to a friend!
  Classes of Omar Andrés Barbosa Ortiz   Easy Blog   resources/views/posts/index.blade.php   Download  
File: resources/views/posts/index.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Easy Blog
Provide a blog as a Laravel service
Author: By
Last change:
Date: 4 days ago
Size: 329 bytes
 

Contents

Class file image Download
<table>
    <thead>
        <tr>
            <th>Title</th>
            <th>Content</th>
        </tr>
    </thead>
    <tbody>
        @foreach ($posts as $post)
            <tr>
                <td>{{ $post->title }}</td>
                <td>{{ $post->content }}</td>
            </tr>
        @endforeach
    </tbody>
</table>