@extends('admin.layout') @section('title', 'OG Previews') @section('content')

Generated VS Cards

These are the 1200×630 PNGs that WhatsApp, Facebook, and Twitter show when a sports match video is shared. Generated on save; regenerated on edit. Filename is match-{video_id}-{updated_at}.png.

@if($files->isEmpty())

No previews cached yet. Save a match video to generate one.

@else
@foreach($files as $f)
{{ $f['name'] }}
Video #{{ $f['id'] }}
{{ $f['name'] }}
{{ number_format($f['size'] / 1024, 1) }} KB · {{ \Carbon\Carbon::createFromTimestamp($f['mtime'])->diffForHumans() }}
@endforeach
@endif
@endsection