{{ __('Manage Links') }}

Your Short Links

Create New Link
@if($shortUrls->count() > 0)
@foreach($shortUrls as $link) @endforeach
Short URL Original URL Clicks Expires Actions
{{ url($link->short_code) }} {{ $link->original_url }} {{ $link->clicks()->count() }} @if($link->expires_at) {{ $link->expires_at->format('M d, Y') }} @else Never @endif View Edit
@csrf @method('DELETE')
{{ $shortUrls->links() }} @else

No links found. Create your first link

@endif