@extends('minimalUI.blank') @push('styles') @endpush @section('icon', 'pe-7s-airplay') @section('title', 'Claim '.$claim->name) @section('header', 'Claim ยท '.$claim->name) @section('description')
{{$claim->claim_id}} @include('components.copy_to_clipboard_button', array('text' => $claim->claim_id, 'id' => 'claimHashClipboardHeader'))
@endsection @section('content')
Overview @if ($claim->is_nsfw) NSFW @endif
@if (!$claim->is_nsfw && strlen(trim($claim->thumbnail_url)) > 0)
@endif
Name
{{ $claim->name }}
Type
@if ($claim->type == "stream") Stream @elseif ($claim->type == "channel") Channel @elseif ($claim->type == "claimreference") Claim Reference @elseif ($claim->type == "claimlist") Claim List @endif
Status
@if ($claim->transaction_time == 0) Pending @else {{ $claim->bid_state }} @endif
@if ($claim->transaction_time != 0)
Timestamp
{{ $claim->claim_time }} ({{ $claim->claim_timestamp }})
@else
Time First Seen
{{ $claim->first_seen_time_ago }} ({{ $claim->created_at }})
@endif
@if ($claim->type == "stream")
Channel
@if ($claim->publisher_id) publisher_id)}}">{{ $claim->publisher_name }} @else No channel @endif
@endif
Price
@if ($claim->fee_currency == null) {{ $claim->fee }} LBC @elseif ($claim->fee_currency == "LBC") {{ $claim->fee/100000000 }} LBC @else {{ $claim->fee }} {{ $claim->fee_currency }} @endif
Effective amount
{{ $claim->effective_amount/100000000 }} LBC
@if ($claim->type === "stream")
Publisher signature
{{ substr($claim->publisher_sig, 0, 40) }}... @include('components.copy_to_clipboard_button', array('text' => $claim->publisher_sig, 'id' => "claimPublisherSigClipboard"))
@if ($claim->sd_hash)
SD hash
{{ substr($claim->sd_hash, 0, 40) }}... @include('components.copy_to_clipboard_button', array('text' => $claim->sd_hash, 'id' => "claimSdHashClipboard"))
@endif @if ($claim->source_hash)
Source hash
{{ substr($claim->source_hash, 0, 40) }}... @include('components.copy_to_clipboard_button', array('text' => $claim->source_hash, 'id' => "claimSourceHashClipboard"))
@endif
@endif
Metadata
Title
@if ($claim->title) {{ $claim->title }} @else No title @endif
Media Type
@if ($claim->source_media_type) {{ $claim->source_media_type }} @else No media type @endif
@if ($claim->source_size)
Source size
@if ($claim->source_size) {{ $claim->source_size }} @endif
@endif
Description
@if ($claim->description) {{ \Illuminate\Support\Str::limit($claim->description, 200, $end='...') }} @else No description @endif
Language
@if ($claim->language) {{ $claim->language }} @else No language @endif
License
@if ($claim->license) @if ($claim->license_url) {{ $claim->license }} @else {{ $claim->license }} @endif @else No license @endif
@if ($claim->frame_width and $claim->frame_height)
Frame size
@if ($claim->frame_width) {{ $claim->frame_width }} x {{ $claim->frame_height }} @else No width @endif
@endif @if ($claim->duration or $claim->audio_duration)
Duration
@if ($claim->duration) {{ $claim->duration }} @elseif ($claim->audio_duration) {{ $claim->audio_duration }} @endif
@endif @if ($claim->latitude or $claim->longitude)
Latitude
@if ($claim->latitude) {{ $claim->latitude }} @else No latitude @endif
Longitude
@if ($claim->longitude) {{ $claim->longitude }} @else No longitude @endif
@endif
@endsection