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

{{ $feed->name }}

{{ $feed->type_display }} • {{ strtoupper($feed->language) }}

{{ $feed->is_active ? 'Active' : 'Inactive' }} Edit Feed

Feed Details

Information about this content feed.

Name
{{ $feed->name }}
Type
@if($feed->type === 'rss') @else @endif {{ $feed->type_display }}
Language
{{ strtoupper($feed->language) }}
Status
{{ $feed->status }}
Created
{{ $feed->created_at->format('M j, Y g:i A') }}
@if($feed->last_fetched_at)
Last Fetched
{{ $feed->last_fetched_at->format('M j, Y g:i A') }}
@endif @if($feed->description)
Description
{{ $feed->description }}
@endif
← Back to Feeds
Edit
@csrf @method('DELETE')
@endsection