mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
31 lines
763 B
PHP
31 lines
763 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Controllers\V1\Admin\Expense;
|
|
|
|
use InvoiceShelf\Http\Controllers\Controller;
|
|
use InvoiceShelf\Models\Expense;
|
|
|
|
class ShowReceiptController extends Controller
|
|
{
|
|
/**
|
|
* Retrieve details of an expense receipt from storage.
|
|
*
|
|
* @param \InvoiceShelf\Models\Expense $expense
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function __invoke(Expense $expense)
|
|
{
|
|
$this->authorize('view', $expense);
|
|
|
|
if ($expense) {
|
|
$media = $expense->getFirstMedia('receipts');
|
|
|
|
if ($media) {
|
|
return response()->file($media->getPath());
|
|
}
|
|
|
|
return respondJson('receipt_does_not_exist', 'Receipt does not exist.');
|
|
}
|
|
}
|
|
}
|