Merge pull request #12057 from snipe/features/add_uploads_to_components
Added uploads to components
This commit is contained in:
commit
1d47d9e52b
8 changed files with 390 additions and 38 deletions
|
@ -228,6 +228,7 @@ class ConsumablesController extends Controller
|
||||||
|
|
||||||
foreach ($consumable->consumableAssignments as $consumable_assignment) {
|
foreach ($consumable->consumableAssignments as $consumable_assignment) {
|
||||||
$rows[] = [
|
$rows[] = [
|
||||||
|
'avatar' => ($consumable_assignment->user) ? e($consumable_assignment->user->present()->gravatar) : '',
|
||||||
'name' => ($consumable_assignment->user) ? $consumable_assignment->user->present()->nameUrl() : 'Deleted User',
|
'name' => ($consumable_assignment->user) ? $consumable_assignment->user->present()->nameUrl() : 'Deleted User',
|
||||||
'created_at' => Helper::getFormattedDateObject($consumable_assignment->created_at, 'datetime'),
|
'created_at' => Helper::getFormattedDateObject($consumable_assignment->created_at, 'datetime'),
|
||||||
'note' => ($consumable_assignment->note) ? e($consumable_assignment->note) : null,
|
'note' => ($consumable_assignment->note) ? e($consumable_assignment->note) : null,
|
||||||
|
|
176
app/Http/Controllers/Consumables/ConsumablesFilesController.php
Normal file
176
app/Http/Controllers/Consumables/ConsumablesFilesController.php
Normal file
|
@ -0,0 +1,176 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Consumables;
|
||||||
|
|
||||||
|
use App\Helpers\StorageHelper;
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use App\Http\Requests\AssetFileRequest;
|
||||||
|
use App\Models\Actionlog;
|
||||||
|
use App\Models\Consumable;
|
||||||
|
use Illuminate\Support\Facades\Response;
|
||||||
|
use Illuminate\Support\Facades\Storage;
|
||||||
|
use Symfony\Consumable\HttpFoundation\JsonResponse;
|
||||||
|
use enshrined\svgSanitize\Sanitizer;
|
||||||
|
|
||||||
|
class ConsumablesFilesController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Validates and stores files associated with a consumable.
|
||||||
|
*
|
||||||
|
* @todo Switch to using the AssetFileRequest form request validator.
|
||||||
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
||||||
|
* @since [v1.0]
|
||||||
|
* @param AssetFileRequest $request
|
||||||
|
* @param int $consumableId
|
||||||
|
* @return \Illuminate\Http\RedirectResponse
|
||||||
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
||||||
|
*/
|
||||||
|
public function store(AssetFileRequest $request, $consumableId = null)
|
||||||
|
{
|
||||||
|
$consumable = Consumable::find($consumableId);
|
||||||
|
|
||||||
|
if (isset($consumable->id)) {
|
||||||
|
$this->authorize('update', $consumable);
|
||||||
|
|
||||||
|
if ($request->hasFile('file')) {
|
||||||
|
if (! Storage::exists('private_uploads/consumables')) {
|
||||||
|
Storage::makeDirectory('private_uploads/consumables', 775);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($request->file('file') as $file) {
|
||||||
|
|
||||||
|
$extension = $file->getClientOriginalExtension();
|
||||||
|
$file_name = 'consumable-'.$consumable->id.'-'.str_random(8).'-'.str_slug(basename($file->getClientOriginalName(), '.'.$extension)).'.'.$extension;
|
||||||
|
|
||||||
|
|
||||||
|
// Check for SVG and sanitize it
|
||||||
|
if ($extension == 'svg') {
|
||||||
|
\Log::debug('This is an SVG');
|
||||||
|
\Log::debug($file_name);
|
||||||
|
|
||||||
|
$sanitizer = new Sanitizer();
|
||||||
|
$dirtySVG = file_get_contents($file->getRealPath());
|
||||||
|
$cleanSVG = $sanitizer->sanitize($dirtySVG);
|
||||||
|
|
||||||
|
try {
|
||||||
|
Storage::put('private_uploads/consumables/'.$file_name, $cleanSVG);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
\Log::debug('Upload no workie :( ');
|
||||||
|
\Log::debug($e);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
Storage::put('private_uploads/consumables/'.$file_name, file_get_contents($file));
|
||||||
|
}
|
||||||
|
|
||||||
|
//Log the upload to the log
|
||||||
|
$consumable->logUpload($file_name, e($request->input('notes')));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return redirect()->route('consumables.show', $consumable->id)->with('success', trans('admin/consumables/message.upload.success'));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return redirect()->route('consumables.show', $consumable->id)->with('error', trans('admin/consumables/message.upload.nofiles'));
|
||||||
|
}
|
||||||
|
// Prepare the error message
|
||||||
|
return redirect()->route('consumables.index')
|
||||||
|
->with('error', trans('admin/consumables/message.does_not_exist'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deletes the selected consumable file.
|
||||||
|
*
|
||||||
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
||||||
|
* @since [v1.0]
|
||||||
|
* @param int $consumableId
|
||||||
|
* @param int $fileId
|
||||||
|
* @return \Illuminate\Http\RedirectResponse
|
||||||
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
||||||
|
*/
|
||||||
|
public function destroy($consumableId = null, $fileId = null)
|
||||||
|
{
|
||||||
|
$consumable = Consumable::find($consumableId);
|
||||||
|
|
||||||
|
// the asset is valid
|
||||||
|
if (isset($consumable->id)) {
|
||||||
|
$this->authorize('update', $consumable);
|
||||||
|
$log = Actionlog::find($fileId);
|
||||||
|
|
||||||
|
// Remove the file if one exists
|
||||||
|
if (Storage::exists('consumables/'.$log->filename)) {
|
||||||
|
try {
|
||||||
|
Storage::delete('consumables/'.$log->filename);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
\Log::debug($e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$log->delete();
|
||||||
|
|
||||||
|
return redirect()->back()
|
||||||
|
->with('success', trans('admin/hardware/message.deletefile.success'));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Redirect to the licence management page
|
||||||
|
return redirect()->route('consumables.index')->with('error', trans('admin/consumables/message.does_not_exist'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allows the selected file to be viewed.
|
||||||
|
*
|
||||||
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
||||||
|
* @since [v1.4]
|
||||||
|
* @param int $consumableId
|
||||||
|
* @param int $fileId
|
||||||
|
* @return \Symfony\Consumable\HttpFoundation\Response
|
||||||
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
||||||
|
*/
|
||||||
|
public function show($consumableId = null, $fileId = null, $download = true)
|
||||||
|
{
|
||||||
|
$consumable = Consumable::find($consumableId);
|
||||||
|
|
||||||
|
// the consumable is valid
|
||||||
|
if (isset($consumable->id)) {
|
||||||
|
$this->authorize('view', $consumable);
|
||||||
|
$this->authorize('consumables.files', $consumable);
|
||||||
|
|
||||||
|
if (! $log = Actionlog::find($fileId)) {
|
||||||
|
return response('No matching record for that asset/file', 500)
|
||||||
|
->header('Content-Type', 'text/plain');
|
||||||
|
}
|
||||||
|
|
||||||
|
$file = 'private_uploads/consumables/'.$log->filename;
|
||||||
|
|
||||||
|
if (Storage::missing($file)) {
|
||||||
|
\Log::debug('FILE DOES NOT EXISTS for '.$file);
|
||||||
|
\Log::debug('URL should be '.Storage::url($file));
|
||||||
|
|
||||||
|
return response('File '.$file.' ('.Storage::url($file).') not found on server', 404)
|
||||||
|
->header('Content-Type', 'text/plain');
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// We have to override the URL stuff here, since local defaults in Laravel's Flysystem
|
||||||
|
// won't work, as they're not accessible via the web
|
||||||
|
if (config('filesystems.default') == 'local') { // TODO - is there any way to fix this at the StorageHelper layer?
|
||||||
|
return StorageHelper::downloader($file);
|
||||||
|
} else {
|
||||||
|
if ($download != 'true') {
|
||||||
|
\Log::debug('display the file');
|
||||||
|
if ($contents = file_get_contents(Storage::url($file))) { // TODO - this will fail on private S3 files or large public ones
|
||||||
|
return Response::make(Storage::url($file)->header('Content-Type', mime_content_type($file)));
|
||||||
|
}
|
||||||
|
|
||||||
|
return JsonResponse::create(['error' => 'Failed validation: '], 500);
|
||||||
|
}
|
||||||
|
|
||||||
|
return StorageHelper::downloader($file);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return redirect()->route('consumables.index')->with('error', trans('admin/consumables/message.does_not_exist', ['id' => $fileId]));
|
||||||
|
}
|
||||||
|
}
|
|
@ -96,6 +96,24 @@ class Consumable extends SnipeModel
|
||||||
'manufacturer' => ['name'],
|
'manufacturer' => ['name'],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Establishes the components -> action logs -> uploads relationship
|
||||||
|
*
|
||||||
|
* @author A. Gianotto <snipe@snipe.net>
|
||||||
|
* @since [v6.1.13]
|
||||||
|
* @return \Illuminate\Database\Eloquent\Relations\Relation
|
||||||
|
*/
|
||||||
|
public function uploads()
|
||||||
|
{
|
||||||
|
return $this->hasMany(\App\Models\Actionlog::class, 'item_id')
|
||||||
|
->where('item_type', '=', self::class)
|
||||||
|
->where('action_type', '=', 'uploaded')
|
||||||
|
->whereNotNull('filename')
|
||||||
|
->orderBy('created_at', 'desc');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the attribute of whether or not the consumable is requestable
|
* Sets the attribute of whether or not the consumable is requestable
|
||||||
*
|
*
|
||||||
|
|
|
@ -178,6 +178,12 @@ return [
|
||||||
'note' => '',
|
'note' => '',
|
||||||
'display' => true,
|
'display' => true,
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'permission' => 'consumables.files',
|
||||||
|
'label' => 'View and Modify Consumable Files',
|
||||||
|
'note' => '',
|
||||||
|
'display' => true,
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,19 +18,48 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
<div class="box box-default">
|
|
||||||
@if ($consumable->id)
|
|
||||||
<div class="box-header with-border">
|
|
||||||
<div class="box-heading">
|
|
||||||
<h2 class="box-title"> {{ $consumable->name }}</h2>
|
|
||||||
</div>
|
|
||||||
</div><!-- /.box-header -->
|
|
||||||
@endif
|
|
||||||
|
|
||||||
<div class="box-body">
|
<!-- Custom Tabs -->
|
||||||
<div class="row">
|
<div class="nav-tabs-custom">
|
||||||
<div class="col-md-12">
|
<ul class="nav nav-tabs hidden-print">
|
||||||
<div class="table table-responsive">
|
|
||||||
|
<li class="active">
|
||||||
|
<a href="#checkedout" data-toggle="tab">
|
||||||
|
<span class="hidden-lg hidden-md">
|
||||||
|
<i class="fas fa-info-circle fa-2x" aria-hidden="true"></i>
|
||||||
|
</span>
|
||||||
|
<span class="hidden-xs hidden-sm">{{ trans('admin/users/general.info') }}</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
@can('consumables.files', $consumable)
|
||||||
|
<li>
|
||||||
|
<a href="#files" data-toggle="tab">
|
||||||
|
<span class="hidden-lg hidden-md">
|
||||||
|
<i class="far fa-file fa-2x" aria-hidden="true"></i></span>
|
||||||
|
<span class="hidden-xs hidden-sm">{{ trans('general.file_uploads') }}
|
||||||
|
{!! ($consumable->uploads->count() > 0 ) ? '<badge class="badge badge-secondary">'.number_format($consumable->uploads->count()).'</badge>' : '' !!}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
@endcan
|
||||||
|
|
||||||
|
@can('update', Consumable::class)
|
||||||
|
|
||||||
|
<li class="pull-right">
|
||||||
|
<a href="#" data-toggle="modal" data-target="#uploadFileModal">
|
||||||
|
<i class="fas fa-paperclip" aria-hidden="true"></i> {{ trans('button.upload') }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
@endcan
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="tab-content">
|
||||||
|
|
||||||
|
<div class="tab-pane active" id="checkedout">
|
||||||
|
<div class="table-responsive">
|
||||||
|
|
||||||
<table
|
<table
|
||||||
data-cookie-id-table="consumablesCheckedoutTable"
|
data-cookie-id-table="consumablesCheckedoutTable"
|
||||||
|
@ -53,23 +82,119 @@
|
||||||
}'>
|
}'>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th data-searchable="false" data-sortable="false" data-field="name">{{ trans('general.user') }}</th>
|
<th data-searchable="false" data-sortable="false" data-field="avatar" data-formatter="imageFormatter">{{ trans('general.image') }}</th>
|
||||||
<th data-searchable="false" data-sortable="false" data-field="created_at" data-formatter="dateDisplayFormatter">{{ trans('general.date') }}</th>
|
<th data-searchable="false" data-sortable="false" data-field="name" formatter="usersLinkFormatter">{{ trans('general.user') }}</th>
|
||||||
|
<th data-searchable="false" data-sortable="false" data-field="created_at" data-formatter="dateDisplayFormatter">
|
||||||
|
{{ trans('general.date') }}
|
||||||
|
</th>
|
||||||
<th data-searchable="false" data-sortable="false" data-field="note">{{ trans('general.notes') }}</th>
|
<th data-searchable="false" data-sortable="false" data-field="note">{{ trans('general.notes') }}</th>
|
||||||
<th data-searchable="false" data-sortable="false" data-field="admin">{{ trans('general.admin') }}</th>
|
<th data-searchable="false" data-sortable="false" data-field="admin">{{ trans('general.admin') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- /.col-md-12-->
|
</div> <!-- close tab-pane div -->
|
||||||
|
|
||||||
|
|
||||||
|
@can('consumables.files', $consumable)
|
||||||
|
<div class="tab-pane" id="files">
|
||||||
|
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table
|
||||||
|
data-cookie-id-table="consumableUploadsTable"
|
||||||
|
data-id-table="consumableUploadsTable"
|
||||||
|
id="consumableUploadsTable"
|
||||||
|
data-search="true"
|
||||||
|
data-pagination="true"
|
||||||
|
data-side-pagination="client"
|
||||||
|
data-show-columns="true"
|
||||||
|
data-show-export="true"
|
||||||
|
data-show-footer="true"
|
||||||
|
data-toolbar="#upload-toolbar"
|
||||||
|
data-show-refresh="true"
|
||||||
|
data-sort-order="asc"
|
||||||
|
data-sort-name="name"
|
||||||
|
class="table table-striped snipe-table"
|
||||||
|
data-export-options='{
|
||||||
|
"fileName": "export-consumables-uploads-{{ str_slug($consumable->name) }}-{{ date('Y-m-d') }}",
|
||||||
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","delete","download","icon"]
|
||||||
|
}'>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th data-visible="true" data-field="icon" data-sortable="true">{{trans('general.file_type')}}</th>
|
||||||
|
<th class="col-md-2" data-searchable="true" data-visible="true" data-field="image">{{ trans('general.image') }}</th>
|
||||||
|
<th class="col-md-2" data-searchable="true" data-visible="true" data-field="filename" data-sortable="true">{{ trans('general.file_name') }}</th>
|
||||||
|
<th class="col-md-1" data-searchable="true" data-visible="true" data-field="filesize">{{ trans('general.filesize') }}</th>
|
||||||
|
<th class="col-md-2" data-searchable="true" data-visible="true" data-field="notes" data-sortable="true">{{ trans('general.notes') }}</th>
|
||||||
|
<th class="col-md-1" data-searchable="true" data-visible="true" data-field="download">{{ trans('general.download') }}</th>
|
||||||
|
<th class="col-md-2" data-searchable="true" data-visible="true" data-field="created_at" data-sortable="true">{{ trans('general.created_at') }}</th>
|
||||||
|
<th class="col-md-1" data-searchable="true" data-visible="true" data-field="actions">{{ trans('table.actions') }}</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@if ($consumable->uploads->count() > 0)
|
||||||
|
@foreach ($consumable->uploads as $file)
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<i class="{{ Helper::filetype_icon($file->filename) }} icon-med" aria-hidden="true"></i>
|
||||||
|
<span class="sr-only">{{ Helper::filetype_icon($file->filename) }}</span>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
@if ($file->filename)
|
||||||
|
@if ( Helper::checkUploadIsImage($file->get_src('consumables')))
|
||||||
|
<a href="{{ route('show.consumablefile', ['consumableId' => $consumable->id, 'fileId' => $file->id, 'download' => 'false']) }}" data-toggle="lightbox" data-type="image"><img src="{{ route('show.consumablefile', ['consumableId' => $consumable->id, 'fileId' => $file->id]) }}" class="img-thumbnail" style="max-width: 50px;"></a>
|
||||||
|
@endif
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{ $file->filename }}
|
||||||
|
</td>
|
||||||
|
<td data-value="{{ (Storage::exists('private_uploads/consumables/'.$file->filename) ? Storage::size('private_uploads/consumables/'.$file->filename) : '') }}">
|
||||||
|
{{ @Helper::formatFilesizeUnits(Storage::exists('private_uploads/consumables/'.$file->filename) ? Storage::size('private_uploads/consumables/'.$file->filename) : '') }}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
@if ($file->note)
|
||||||
|
{{ $file->note }}
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
@if ($file->filename)
|
||||||
|
<a href="{{ route('show.consumablefile', [$consumable->id, $file->id, 'download' => 'true']) }}" class="btn btn-default">
|
||||||
|
<i class="fas fa-download" aria-hidden="true"></i>
|
||||||
|
<span class="sr-only">{{ trans('general.download') }}</span>
|
||||||
|
</a>
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
|
<td>{{ $file->created_at }}</td>
|
||||||
|
<td>
|
||||||
|
<a class="btn delete-asset btn-danger btn-sm" href="{{ route('delete/consumablefile', [$consumable->id, $file->id]) }}" data-content="{{ trans('general.delete_confirm', ['item' => $file->filename]) }}" data-title="{{ trans('general.delete') }}">
|
||||||
|
<i class="fas fa-trash icon-white" aria-hidden="true"></i>
|
||||||
|
<span class="sr-only">{{ trans('general.delete') }}</span>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
@else
|
||||||
|
<tr>
|
||||||
|
<td colspan="8">{{ trans('general.no_results') }}</td>
|
||||||
|
</tr>
|
||||||
|
@endif
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div> <!-- /.tab-pane -->
|
||||||
|
@endcan
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- /.box.box-default-->
|
|
||||||
</div> <!-- /.col-md-9-->
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
|
|
||||||
|
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -161,6 +286,11 @@
|
||||||
</div> <!-- /.col-md-3-->
|
</div> <!-- /.col-md-3-->
|
||||||
</div> <!-- /.row-->
|
</div> <!-- /.row-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@can('update', \App\Models\Consumable::class)
|
||||||
|
@include ('modals.upload-file', ['item_type' => 'consumable', 'item_id' => $consumable->id])
|
||||||
|
@endcan
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
@section('moar_scripts')
|
@section('moar_scripts')
|
||||||
|
|
|
@ -632,7 +632,11 @@
|
||||||
|
|
||||||
if (value) {
|
if (value) {
|
||||||
|
|
||||||
if (row.name) {
|
// This is a clunky override to handle unusual API responses where we're presenting a link instead of an array
|
||||||
|
if (row.avatar) {
|
||||||
|
var altName = '';
|
||||||
|
}
|
||||||
|
else if (row.name) {
|
||||||
var altName = row.name;
|
var altName = row.name;
|
||||||
}
|
}
|
||||||
else if ((row) && (row.model)) {
|
else if ((row) && (row.model)) {
|
||||||
|
|
|
@ -16,6 +16,21 @@ Route::group(['prefix' => 'consumables', 'middleware' => ['auth']], function ()
|
||||||
[Consumables\ConsumableCheckoutController::class, 'store']
|
[Consumables\ConsumableCheckoutController::class, 'store']
|
||||||
)->name('consumables.checkout.store');
|
)->name('consumables.checkout.store');
|
||||||
|
|
||||||
|
Route::post(
|
||||||
|
'{consumableId}/upload',
|
||||||
|
[Consumables\ConsumablesFilesController::class, 'store']
|
||||||
|
)->name('upload/consumable');
|
||||||
|
|
||||||
|
Route::delete(
|
||||||
|
'{consumableId}/deletefile/{fileId}',
|
||||||
|
[Consumables\ConsumablesFilesController::class, 'destroy']
|
||||||
|
)->name('delete/consumablefile');
|
||||||
|
|
||||||
|
Route::get(
|
||||||
|
'{consumableId}/showfile/{fileId}/{download?}',
|
||||||
|
[Consumables\ConsumablesFilesController::class, 'show']
|
||||||
|
)->name('show.consumablefile');
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
2
storage/private_uploads/consumables/.gitignore
vendored
Executable file
2
storage/private_uploads/consumables/.gitignore
vendored
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
Loading…
Add table
Reference in a new issue