diff --git a/app/views/backend/licenses/view.blade.php b/app/views/backend/licenses/view.blade.php
index 36d2c28843..0c01f9a540 100644
--- a/app/views/backend/licenses/view.blade.php
+++ b/app/views/backend/licenses/view.blade.php
@@ -36,142 +36,143 @@ View License {{ $license->name }} ::
-
-
{{ $license->seats }} License Seats
-
-
-
- | Seat |
- User |
- |
-
-
-
-
- @if ($license->licenseseats)
- @foreach ($license->licenseseats as $licensedto)
+
+ {{ $license->seats }} License Seats
+
+
+
+ | Seat |
+ User |
+ |
+
+
+
+
+ @if ($license->licenseseats)
+ @foreach ($license->licenseseats as $licensedto)
-
+
- | Seat {{ $count }} |
-
- @if ($licensedto->assigned_to)
-
- {{ $licensedto->user->fullName() }}
-
- @endif
- |
-
- @if ($licensedto->assigned_to)
- Checkin
- @else
- Checkout
- @endif
- |
-
-
-
- @endforeach
- @endif
-
-
-
-
-
- Checkout History
-
-
-
-
- |
- Date |
- Admin |
- Action |
- User |
- Note |
-
-
-
- @if (count($license->assetlog) > 0)
- @foreach ($license->assetlog as $log)
-
- |
- @if ((isset($log->checkedout_to)) && ($log->checkedout_to == $license->assigned_to))
-
- @endif
- |
- {{ $log->added_on }} |
-
- @if (isset($log->user_id))
- {{ $log->adminlog->fullName() }}
- @endif
- |
- {{ $log->action_type }} |
-
-
- @if ($log->userlog)
-
- {{ $log->userlog->fullName() }}
-
- @endif
-
- |
-
- @if ($log->note)
- {{ $log->note }}
- @endif
- |
-
- @endforeach
- @endif
-
- |
- {{ $license->created_at }} |
-
- @if (isset($license->adminuser->id))
- {{ $license->adminuser->fullName() }}
- @else
- Unknown Admin
- @endif
- |
- created asset |
- |
- |
-
-
-
-
-
-
-
-
-
License Info:
-
- @if ($license->serial)
- - Serial: {{ $license->serial }}
+ Seat {{ $count }} |
+
+ @if ($licensedto->assigned_to)
+
+ {{ $licensedto->user->fullName() }}
+
@endif
- @if ($license->license_name)
- - License Name: {{ $license->license_name }}
+ |
+
+ @if ($licensedto->assigned_to)
+ Checkin
+ @else
+ Checkout
@endif
- @if ($license->license_email)
- - License Email: {{ $license->license_email }}
- @endif
- @if ($license->purchase_date)
- - Purchase Date: {{ $license->purchase_date }}
- @endif
- @if ($license->purchase_cost)
- - Purchase Cost: ${{ number_format($license->purchase_cost,2) }}
- @endif
- @if ($license->order_number)
- - Order #: {{ $license->order_number }}
- @endif
- @if ($license->seats)
- - Seats: {{ $license->seats }}
- @endif
- @if ($license->seats)
- - Depreciation: {{ $license->depreciation->name }} ({{ $license->depreciation->months }} months)
- @endif
-
+ |
-
+
+
+ @endforeach
+ @endif
+
+
+
+
+
+
Checkout History
+
+
+
+
+ |
+ Date |
+ Admin |
+ Action |
+ User |
+ Note |
+
+
+
+ @if (count($license->assetlog) > 0)
+ @foreach ($license->assetlog as $log)
+
+ |
+ @if ((isset($log->checkedout_to)) && ($log->checkedout_to == $license->assigned_to))
+
+ @endif
+ |
+ {{ $log->added_on }} |
+
+ @if (isset($log->user_id))
+ {{ $log->adminlog->fullName() }}
+ @endif
+ |
+ {{ $log->action_type }} |
+
+
+ @if ($log->userlog)
+
+ {{ $log->userlog->fullName() }}
+
+ @endif
+
+ |
+
+ @if ($log->note)
+ {{ $log->note }}
+ @endif
+ |
+
+ @endforeach
+ @endif
+
+ |
+ {{ $license->created_at }} |
+
+ @if (isset($license->adminuser->id))
+ {{ $license->adminuser->fullName() }}
+ @else
+ Unknown Admin
+ @endif
+ |
+ created asset |
+ |
+ |
+
+
+
+
+
+
+
+
License Info:
+
+ @if ($license->serial)
+ - Serial: {{ $license->serial }}
+ @endif
+ @if ($license->license_name)
+ - License Name: {{ $license->license_name }}
+ @endif
+ @if ($license->license_email)
+ - License Email: {{ $license->license_email }}
+ @endif
+ @if ($license->purchase_date)
+ - Purchase Date: {{ $license->purchase_date }}
+ @endif
+ @if ($license->purchase_cost)
+ - Purchase Cost: ${{ number_format($license->purchase_cost,2) }}
+ @endif
+ @if ($license->order_number)
+ - Order #: {{ $license->order_number }}
+ @endif
+ @if ($license->seats)
+ - Seats: {{ $license->seats }}
+ @endif
+ @if ($license->seats)
+ - Depreciation: {{ $license->depreciation->name }} ({{ $license->depreciation->months }} months)
+ @endif
+
+
+
+
+
@stop
\ No newline at end of file