Untitled
unknown
plain_text
2 years ago
442 B
9
Indexable
@foreach ($list as $l)
<tr>
<td>{{ $l->url }}</td>
@if ($l->status == 1)
<td> <span class="badge text-bg-success" data-toggle="modal" data-target="#exampleModal" id="{{$l->id}}" onclick="getGTM('{{ $l->id }}', '{{ $l->url }}')" style="cursor: pointer">Installed</span></td>
@else
<td><span class="badge text-bg-danger">Not Installed</span></td>
@endif
</tr>
@endforeachEditor is loading...
Leave a Comment