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

Footer Management

@if(session('success'))
{{ session('success') }}
@endif
Footer Info
@if($footerInfo)
@csrf @method('PUT')

@if($footerInfo->logo) @endif
@else Add Footer Info @endif
Quick Links
@csrf
@foreach($links as $link) @endforeach
TitleURLOrderActions
{{ $link->title }}

{{ $link->url }}

{{ $link->order }} Edit
@csrf @method('DELETE')
News Add News
@foreach($news as $newsItem) @endforeach
TitleDescriptionLinkActions
{{ $newsItem->title }}

{{ $newsItem->description }}

{{ $newsItem->link }} Edit
@csrf @method('DELETE')
Social Links Add Social Link
@foreach($socials as $social) @endforeach
PlatformIconURLOrderActions
{{ $social->platform }} @if($social->icon_image) @endif

{{ $social->url }}

{{ $social->order }} Edit
@csrf @method('DELETE')
@endsection