@extends('layouts.admin') @section('page_kicker', 'CMS') @section('page_title', 'Content management') @section('content')

Landing content

Update marketing copy by setting key.

@csrf
@foreach($contentSettings as $item)
{{ $item->setting_key }} : {{ \Illuminate\Support\Str::limit($item->setting_value, 120) }}
@endforeach

Announcements

Broadcast to scoped audiences.

@csrf
@if($announcements instanceof \Illuminate\Pagination\AbstractPaginator)
@foreach($announcements as $note)

{{ $note->title }}

{{ \Illuminate\Support\Str::limit($note->body, 140) }}

Target: {{ $note->target_scope }} ยท {{ $note->created_at }}

@endforeach
{{ $announcements->links() }}
@endif
@endsection