@extends('layouts.app') @section('title') {{ 'News Feeds' }} @endsection @push('styles') @endpush @section('content') @include('layouts.message')
@csrf
@if (isset($newsFeedDetails)) @endif
@php $contentUrl = isset($newsFeedDetails) && $newsFeedDetails->content ? $newsFeedDetails->content : null; @endphp
@if (Auth::user()->hasRole('admin'))
@endif

@push('scripts') @endpush @endsection