first commit
This commit is contained in:
28
resources/views/followup/partials/table.blade.php
Normal file
28
resources/views/followup/partials/table.blade.php
Normal file
@ -0,0 +1,28 @@
|
||||
|
||||
@if(!empty($followup->registration($followup->id)))
|
||||
|
||||
<tr>
|
||||
<td>{{++$key}}</td>
|
||||
<td>{{ $followup->registration($followup->id)->name}}</td>
|
||||
<td>{{ $followup->registration($followup->id)->email }}</td>
|
||||
<td>{{ $followup->registration($followup->id)->phone }}</td>
|
||||
<td>{{ $followup->next_schedule }}</td>
|
||||
<td>{{ Str::limit($followup->follow_up_by, 47) }}</td>
|
||||
<td>{{ Str::limit($followup->remarks, 47) }}</td>
|
||||
|
||||
<td >
|
||||
<a href="{{route('followup.show', $followup->id)}}" class="btn btn-flat btn-edit btn-color-primary btn-hover-primary btn-icon btn-soft" title="edit">
|
||||
<em class="icon ni ni-edit"></em>
|
||||
</a>
|
||||
<a href="#">
|
||||
<button type="button" class="btn btn-flat btn btn-color-danger btn-hover-danger btn-icon btn-soft" onclick="deleteThis(this); return false;" link="{{ route('followup.destroy', $followup->id) }}">
|
||||
<em class="icon ni ni-trash"></em>
|
||||
</button>
|
||||
</a>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
|
||||
|
Reference in New Issue
Block a user