@extends('backend.layouts.main') @section('content')

Manage On-Premise Licenses Manage

Create New
@if(Session::has('update_success'))

Success!

{{ Session('update_success') }}
@endif
@forelse($licenses as $license) @empty @endforelse
Full Name Email Phone Company Hostname Created At Expire At Download License
{{ $license->full_name }} {{ $license->email }} {{ $license->phone }} {{ $license->company }} {{ $license->hostname }} {{ $license->created_at->diffForHumans() }} @if(\Carbon\Carbon::parse($license->expire_at)->diffInYears(\Carbon\Carbon::now()) > 400) No expiry @else {{ \Carbon\Carbon::parse($license->expire_at)->diffForHumans() }} @endif Download
No Licenses
@endsection