@extends('layout.app') @section('content')

Publicaciones sociales {{ count($socialposts) }}

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@foreach ($socialposts as $post) @endforeach
Imagen Contenido Canal Red social Estado Programado para Fecha de creación
@if(isset($post->media->name)) Imagen @endif {{ Str::limit($post->caption, 50) }} {{ $post->channel_name }} {{ $post->social_network_name }} @if($post->status == 'upload failed') {{ $post->status }} @elseif($post->status == 'scheduled') {{ $post->status }} @elseif($post->status == 'posted') {{ $post->status }} @elseif($post->status == 'uploaded') {{ $post->status }} @else {{ $post->status }} @endif {{ $post->scheduled_at }} {{ $post->created_at }}
@endsection