This commit is contained in:
Dr Masroor Ehsan 2025-01-12 01:38:10 +06:00
parent 2cfddb3ba2
commit 8b669813d8
2 changed files with 4 additions and 5 deletions

Binary file not shown.

View File

@ -13,11 +13,11 @@
@if ($report->eligibleForExport())
<a class="btn btn-facebook btn-xs me-1 fs-xsmall fw-light" target="_blank"
href="{{ $report->wordDownloadUrl() }}">
<img class="me-1" src="{{ asset('imgs/docx.png') }}" alt="DOCX download">doc
<img class="me-1" src="{{ asset('imgs/docx.png') }}" alt="Word document download">doc
</a>
<a class="btn btn-dribbble btn-xs me-1 fs-xsmall fw-light" target="_blank"
href="{{ $report->pdfDownloadUrl() }}">
<img class="me-1" src="{{ asset('imgs/pdf.png') }}" alt="PDF download">pdf
<img class="me-1" src="{{ asset('imgs/pdf.png') }}" alt="PDF document download">pdf
</a>
<a class="btn btn-reddit btn-xs me-1 fs-xsmall fw-light" target="_blank"
href="{{ $report->htmlDownloadUrl() }}">
@ -25,14 +25,13 @@
</a>
@else
@if ($report->canEdit())
<a class="btn btn-reddit btn-xs me-1 fs-xsmall fw-light" target="_blank"
<a class="btn btn-dribbble btn-xs me-1 fs-xsmall fw-light" target="_blank"
href="{{ route('staff.report.edit', $report->accession_number) }}">
Edit
</a>
@endif
@if ($report->canRemove())
remove_button
<!-- remove button -->
@endif
@endif
</td>