@extends('backend.layouts.app') @section('title', app_name() . ' | '. __('labels.backend.access.license.management')) @section('content') @php $types = [ 1 => 'Renew', 2 => 'Days', 3 => 'Custom Date', ]; @endphp

@lang('labels.backend.access.license.renewhistory.management')

@foreach($licenses as $license) @endforeach
@lang('labels.backend.access.license.renewhistory.table.name') @lang('labels.backend.access.license.renewhistory.table.allocateduser') @lang('labels.backend.access.license.renewhistory.table.type') @lang('labels.backend.access.license.renewhistory.table.selected_date') @lang('labels.backend.access.license.renewhistory.table.old_expire_date') @lang('labels.backend.access.license.renewhistory.table.new_expire_date') @lang('labels.backend.access.license.renewhistory.table.old_extended_days') @lang('labels.backend.access.license.renewhistory.table.extended_days') @lang('labels.backend.access.license.renewhistory.table.created_date')
{{ $license->key_uuid }} {{ $license->user_email ?? '-' }} {{ $types[$license->type] ?? 'Unknown' }} {{ $license->selected_date ?? '-' }} {{ $license->old_expiration_date }} {{ $license->new_expiration_date }} {{ $license->old_extended_days }} {{ $license->extended_days }} {{ $license->created_at }}
{!! $licenses->render() !!}
@endsection @push('after-scripts') @endpush