@extends('layouts.app_layout')
@section('content')
@php $types = [ 1 => 'Facebook', 2 => 'YouTube', 3 => 'LinkedIn', 4 => 'Instagram', 5 => 'Twitter', 6 => 'Pinterest', 7 => 'Snapchat', 8 => 'TikTok', 9 => 'Other' ]; @endphp {{ $types[$socialMedia->type] ?? '—' }}
{{ $socialMedia->name ?? '—' }}
{{ $socialMedia->url ?? '—' }}
{{ $socialMedia->embed_code ?? '—' }}
{{ $socialMedia->icon_class ?? '—' }}
@if ($socialMedia->is_approved == 1) Approved @elseif ($socialMedia->is_approved == 2) Rejected @else Pending @endif
{!! $socialMedia->is_published ? 'Published' : 'Not Published' !!}
{{ $socialMedia->remarks ? $socialMedia->remarks : 'No remarks available' }}