@php $homeContents = \App\Models\HomeContent::latest()->get(); @endphp @extends('layouts.admin'); @section('main-content')
@foreach ($homeContents as $homeContent) @endforeach
Home Image Iframe Link Title Features Action
@if ($homeContent->image) @else No Image @endif {{ $homeContent->iframe_link }} {{ $homeContent->title }} @if ($homeContent && isset($homeContent->features)) @foreach (json_decode($homeContent->features) as $feature)
  • {{ $feature }}
  • @endforeach @endif
    @endsection