mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-25 14:58:40 +00:00
Attachment controller basic index.
This commit is contained in:
@@ -147,6 +147,24 @@ class AttachmentController extends Controller
|
|||||||
return view('attachments.edit', compact('attachment', 'subTitleIcon', 'subTitle'));
|
return view('attachments.edit', compact('attachment', 'subTitleIcon', 'subTitle'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
$set = $this->repository->get();
|
||||||
|
$set = $set->each(
|
||||||
|
function (Attachment $attachment) {
|
||||||
|
$attachment->file_exists = $this->repository->exists($attachment);
|
||||||
|
|
||||||
|
return $attachment;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
return view('attachments.index', compact('set'));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param AttachmentFormRequest $request
|
* @param AttachmentFormRequest $request
|
||||||
* @param Attachment $attachment
|
* @param Attachment $attachment
|
||||||
|
64
resources/views/attachments/index.twig
Normal file
64
resources/views/attachments/index.twig
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{% extends "./layout/default" %}
|
||||||
|
|
||||||
|
{% block breadcrumbs %}
|
||||||
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName) }}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
||||||
|
<div class="box">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">
|
||||||
|
List of all attachments
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
<div class="box-body no-padding">
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th colspan="2">File name</th>
|
||||||
|
<th>Size of file</th>
|
||||||
|
<th>Type of file</th>
|
||||||
|
<th>Attached to</th>
|
||||||
|
<th>Exists?</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{% for att in set %}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td>{{ att.filename }}</td>
|
||||||
|
<td>{{ att.size|filesize }}</td>
|
||||||
|
<td>{{ att.mime }}</td>
|
||||||
|
<td>
|
||||||
|
{% if att.attachable_type == 'FireflyIII\\Models\\TransactionJournal' %}
|
||||||
|
<a href="{{ route('transactions.show', [att.attachable_id]) }}">
|
||||||
|
{{ att.attachable.description }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{% if att.file_exists %}
|
||||||
|
<i class="fa fa-check text-success"></i>
|
||||||
|
{% else %}
|
||||||
|
<i class="fa fa-warning text-danger"></i>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block styles %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block scripts %}
|
||||||
|
{% endblock %}
|
@@ -248,6 +248,14 @@ Breadcrumbs::register(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// ATTACHMENTS
|
// ATTACHMENTS
|
||||||
|
Breadcrumbs::register(
|
||||||
|
'attachments.index',
|
||||||
|
function (BreadCrumbsGenerator $breadcrumbs) {
|
||||||
|
$breadcrumbs->parent('home');
|
||||||
|
$breadcrumbs->push(trans('firefly.attachments'), route('attachments.index'));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
Breadcrumbs::register(
|
Breadcrumbs::register(
|
||||||
'attachments.edit',
|
'attachments.edit',
|
||||||
function (BreadCrumbsGenerator $breadcrumbs, Attachment $attachment) {
|
function (BreadCrumbsGenerator $breadcrumbs, Attachment $attachment) {
|
||||||
|
@@ -140,6 +140,7 @@ Route::group(
|
|||||||
*/
|
*/
|
||||||
Route::group(
|
Route::group(
|
||||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'attachments', 'as' => 'attachments.'], function () {
|
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'attachments', 'as' => 'attachments.'], function () {
|
||||||
|
Route::get('', ['uses' => 'AttachmentController@index', 'as' => 'index']);
|
||||||
Route::get('edit/{attachment}', ['uses' => 'AttachmentController@edit', 'as' => 'edit']);
|
Route::get('edit/{attachment}', ['uses' => 'AttachmentController@edit', 'as' => 'edit']);
|
||||||
Route::get('delete/{attachment}', ['uses' => 'AttachmentController@delete', 'as' => 'delete']);
|
Route::get('delete/{attachment}', ['uses' => 'AttachmentController@delete', 'as' => 'delete']);
|
||||||
Route::get('download/{attachment}', ['uses' => 'AttachmentController@download', 'as' => 'download']);
|
Route::get('download/{attachment}', ['uses' => 'AttachmentController@download', 'as' => 'download']);
|
||||||
|
Reference in New Issue
Block a user