Formatting fixes
Formatting fixes
This commit is contained in:
parent
e844820f31
commit
c079e72104
|
@ -136,7 +136,7 @@ class ResellerController extends Controller
|
||||||
->get(['s.*', 'p.name as provider_name', 'l.name as location', 'pr.*']);
|
->get(['s.*', 'p.name as provider_name', 'l.name as location', 'pr.*']);
|
||||||
|
|
||||||
$labels = DB::table('labels_assigned as l')
|
$labels = DB::table('labels_assigned as l')
|
||||||
->join('labels', 'l.label_id', '=', 'labels.id')
|
->LeftJoin('labels', 'l.label_id', '=', 'labels.id')
|
||||||
->where('l.service_id', '=', $reseller->id)
|
->where('l.service_id', '=', $reseller->id)
|
||||||
->get(['labels.label']);
|
->get(['labels.label']);
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
class="text-body mx-1">
|
class="text-body mx-1">
|
||||||
<i class="fas fa-eye" title="view"></i></a>
|
<i class="fas fa-eye" title="view"></i></a>
|
||||||
@csrf
|
@csrf
|
||||||
|
|
||||||
<i class="fas fa-trash text-danger ms-3" @click="modalForm"
|
<i class="fas fa-trash text-danger ms-3" @click="modalForm"
|
||||||
id="btn-{{$label->label}}" title="{{$label->id}}"></i>
|
id="btn-{{$label->label}}" title="{{$label->id}}"></i>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
</x-slot>
|
</x-slot>
|
||||||
<div class="container" id="app">
|
<div class="container" id="app">
|
||||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||||
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
<ul class="nav nav-tabs mt-3" id="myTab" role="tablist">
|
||||||
<li class="nav-item" role="presentation">
|
<li class="nav-item" role="presentation">
|
||||||
<button class="nav-link active" id="home-tab" data-bs-toggle="tab" data-bs-target="#home" type="button"
|
<button class="nav-link active" id="home-tab" data-bs-toggle="tab" data-bs-target="#home" type="button"
|
||||||
role="tab" aria-controls="home" aria-selected="true">Active
|
role="tab" aria-controls="home" aria-selected="true">Active
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@if(!empty($servers))
|
@if(!empty($servers[0]))
|
||||||
@foreach($servers as $s)
|
@foreach($servers as $s)
|
||||||
<tr>
|
<tr>
|
||||||
@if(Session::get('show_server_value_hostname') === 1)
|
@if(Session::get('show_server_value_hostname') === 1)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user