|
@@ -1,38 +1,41 @@
|
|
|
|
+<?php /* DO NOT GENERATE */ ?>
|
|
@extends('admin.pros.view')
|
|
@extends('admin.pros.view')
|
|
@section('content-inner')
|
|
@section('content-inner')
|
|
|
|
|
|
- <div class="pb-3">
|
|
|
|
|
|
+<div class="pb-3">
|
|
|
|
|
|
- <h5 class='my-3 d-flex stag-heading stag-heading-sub'>
|
|
|
|
- <div>Pro Rates</div>
|
|
|
|
- <div class="ml-auto">
|
|
|
|
- <a class="btn btn-primary btn-sm ml-2" up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href="{{route('pros_SINGLE-ACTION_add_new_pro_rate', ['uid' => $record->uid])}}?optimised=1"><i class='fa fa-plus-circle' aria-hidden='true'></i> Add New</a>
|
|
|
|
- </div>
|
|
|
|
- </h5>
|
|
|
|
|
|
+ <h5 class='my-3 d-flex stag-heading stag-heading-sub'>
|
|
|
|
+ <div>Pro Rates</div>
|
|
|
|
+ <div class="ml-auto">
|
|
|
|
+ <a class="btn btn-primary btn-sm ml-2" up-modal=".form-contents" up-preload up-delay="25" up-width="800" up-history="false" href="{{route('pros_SINGLE-ACTION_add_new_pro_rate', ['uid' => $record->uid])}}?optimised=1"><i class='fa fa-plus-circle' aria-hidden='true'></i> Add New</a>
|
|
|
|
+ </div>
|
|
|
|
+ </h5>
|
|
|
|
|
|
- <div class="table-responsive p-0 bg-white border stag-table stag-table-sub">
|
|
|
|
- <table class="table table-hover text-nowrap">
|
|
|
|
- <thead>
|
|
|
|
|
|
+ <div class="table-responsive p-0 bg-white border stag-table stag-table-sub">
|
|
|
|
+ <table class="table table-hover text-nowrap">
|
|
|
|
+ <thead>
|
|
<tr>
|
|
<tr>
|
|
<th> </th>
|
|
<th> </th>
|
|
-<th>Responsibility</th>
|
|
|
|
-<th>Code</th>
|
|
|
|
-<th>Amount</th>
|
|
|
|
|
|
+ <th>Responsibility</th>
|
|
|
|
+ <th>Code</th>
|
|
|
|
+ <th>Amount</th>
|
|
|
|
+ <th></th>
|
|
</tr>
|
|
</tr>
|
|
- </thead>
|
|
|
|
- <tbody>
|
|
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody class="sortable" data-url="/api/proRate/sort">
|
|
@foreach($subRecords as $subRecord)
|
|
@foreach($subRecords as $subRecord)
|
|
- <tr>
|
|
|
|
- <td><a href="/pro_rates/view/{{ $subRecord->uid }}"><i class="fas fa-share-square"></i></a></td>
|
|
|
|
-<td><?= $subRecord->responsibility ?></td>
|
|
|
|
-<td><?= $subRecord->code ?></td>
|
|
|
|
-<td><?= $subRecord->amount ?></td>
|
|
|
|
- </tr>
|
|
|
|
|
|
+ <tr data-uid="{{$subRecord->uid}}">
|
|
|
|
+ <td><a href="/pro_rates/view/{{ $subRecord->uid }}"><i class="fas fa-share-square"></i></a></td>
|
|
|
|
+ <td><?= $subRecord->responsibility ?></td>
|
|
|
|
+ <td><?= $subRecord->code ?></td>
|
|
|
|
+ <td><?= $subRecord->amount ?></td>
|
|
|
|
+ <td><a href=""><i class="fa fa-bars"></i></a></td>
|
|
|
|
+ </tr>
|
|
@endforeach
|
|
@endforeach
|
|
- </tbody>
|
|
|
|
- </table>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
-@endsection
|
|
|
|
|
|
+</div>
|
|
|
|
+
|
|
|
|
+@endsection
|