@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.shortUrl.title') }}
{{ trans('cruds.shortUrl.fields.id') }} {{ $shortUrl->id }}
{{ trans('cruds.shortUrl.fields.ori_data') }} {{ $shortUrl->ori_data }}
{{ trans('cruds.shortUrl.fields.link_type') }} {{ App\Models\ShortUrl::LINK_TYPE_RADIO[$shortUrl->link_type] ?? '' }}
{{ trans('cruds.shortUrl.fields.protected') }} {{ App\Models\ShortUrl::PROTECTED_RADIO[$shortUrl->protected] ?? '' }}
{{ trans('cruds.shortUrl.fields.option_1') }} {{ $shortUrl->option_1 }}
{{ trans('cruds.shortUrl.fields.option_2') }} {{ $shortUrl->option_2 }}
{{ trans('cruds.shortUrl.fields.option_3') }} {{ $shortUrl->option_3 }}
{{ trans('cruds.shortUrl.fields.option_4') }} {{ $shortUrl->option_4 }}
{{ trans('cruds.shortUrl.fields.option_5') }} {{ $shortUrl->option_5 }}
{{ trans('cruds.shortUrl.fields.protection_code') }} {{ $shortUrl->protection_code }}
{{ trans('cruds.shortUrl.fields.generated_data') }} {{ url('/'.$shortUrl->generated_data) }}
{{ trans('cruds.shortUrl.fields.no_of_click') }} {{ $shortUrl->no_of_click }}
{{ trans('global.relatedData') }}
@includeIf('admin.shortUrls.relationships.shortUrlVisitors', ['visitors' => $shortUrl->shortUrlVisitors])
@endsection