@extends('layouts.admin') @section('page-title', 'home') @section('content')

Home Page Records

+ Add New
@if($home->isEmpty())

No home page records found.

@else @foreach($home as $hm) @endforeach
ID Home Created Actions
{{ $hm->id }} Title {{ $hm->created_at->format('d M Y') }} Edit
@csrf @method('DELETE')
@endif
@endsection