Formatting fixes

Formatting fixes
This commit is contained in:
cp6 2022-03-05 12:02:10 +11:00
parent e844820f31
commit c079e72104
4 changed files with 3 additions and 4 deletions

View File

@ -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']);

View File

@ -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>

View File

@ -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

View File

@ -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)