@if(Session::has('update_success'))
Success!
{{ Session('update_success') }}
@endif
Full Name |
Email |
Phone |
Company |
Hostname |
Created At |
Expire At |
Download License |
@forelse($licenses as $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 |
@empty
No Licenses
|
@endforelse
@endsection