PHP Classes

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

Recommend this page to a friend!
  Classes of Daniel Mullin   Laravel Bookwhen   resources/views/attachments/index.blade.php   Download  
File: resources/views/attachments/index.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Bookwhen
Provide an API to access Bookwhen API services
Author: By
Last change:
Date: 24 days ago
Size: 209 bytes
 

Contents

Class file image Download
<h1>Showing all attachments</h1>

@forelse ($attachments as $attachment)
<li><a href="./attachments/{{ $attachment->id }}">{{ $attachment->title }}</a></li>
@empty
    <p> 'No attachments yet' </p>
@endforelse