Browse Source

No delete button for care months

Vijayakrishnan Krishnan 5 years ago
parent
commit
2974eed481
1 changed files with 0 additions and 14 deletions
  1. 0 14
      resources/views/app/patient/care-months.blade.php

+ 0 - 14
resources/views/app/patient/care-months.blade.php

@@ -56,7 +56,6 @@
                 <th class="px-2 text-secondary border-bottom-0">CM Total Time</th>
                 <th class="px-2 text-secondary border-bottom-0">CM Total Time</th>
                 <th class="px-2 text-secondary border-bottom-0">MCP</th>
                 <th class="px-2 text-secondary border-bottom-0">MCP</th>
                 <th class="px-2 text-secondary border-bottom-0">Created</th>
                 <th class="px-2 text-secondary border-bottom-0">Created</th>
-                <th class="px-2 text-secondary border-bottom-0 delete-column">&nbsp;</th>
             </tr>
             </tr>
             </thead>
             </thead>
             <tbody>
             <tbody>
@@ -70,19 +69,6 @@
                     <td class="px-2">{{$careMonth->cm_total_time_in_seconds}} seconds</td>
                     <td class="px-2">{{$careMonth->cm_total_time_in_seconds}} seconds</td>
                     <td class="px-2">{{$careMonth->mcp ? $careMonth->mcp->name_display : '-'}}</td>
                     <td class="px-2">{{$careMonth->mcp ? $careMonth->mcp->name_display : '-'}}</td>
                     <td class="px-2">{{friendly_date_time($careMonth->created_at)}}</td>
                     <td class="px-2">{{friendly_date_time($careMonth->created_at)}}</td>
-                    <td class="px-2 text-center delete-column">
-                        <div moe relative>
-                            <a start show><i class="fa fa-trash text-danger"></i></a>
-                            <form url="/api/careMonth/remove" right>
-                                <input type="hidden" name="uid" value="{{ $careMonth->uid }}">
-                                <p class="small">Are you sure you want to delete this care-month?</p>
-                                <div class="d-flex align-items-center">
-                                    <button class="btn btn-sm btn-danger mr-2" submit>Delete</button>
-                                    <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
-                                </div>
-                            </form>
-                        </div>
-                    </td>
                 </tr>
                 </tr>
             @endforeach
             @endforeach
             </tbody>
             </tbody>