added print files view and delete

This commit is contained in:
franknstayn
2020-03-14 20:41:41 +08:00
parent 8685f93b29
commit 5f05c34167
6 changed files with 173 additions and 9 deletions

View File

@@ -35,9 +35,16 @@
<div class="box-footer">
<div class="row">
<div class="col-sm-12">
<div class="text-center">
</div>
<ul class="list-group">
@foreach ($selectPrintFiles as $template)
<li class="list-group-item">
<a href="{{ url('admin/print-files') . '/' . $template->TemplateCode }}"><b>{{ $template->TemplateName }}</b></a>
<div>
<small>{{ $template->TemplateCode . ' / ' . $template->SportsName . ' / ' . $template->Category }} </small>
</div>
</li>
@endforeach
</ul>
</div>
</div>
</div>