@extends('themes.MyLittleHouseSchool.app') @section('content')

{{__('MLHS Latest')}}

@foreach($news ?? [] as $post)
{{\Carbon\Carbon::parse($post->date)->format('M')}}
{{\Carbon\Carbon::parse($post->date)->format('d')}}
@endforeach




@php $category = \App\PostCategory::where('category_id','1')->first(); $category->structure(); @endphp

{{$category->title}}

@foreach($Life_at_MLHS ?? [] as $post)
{{\Carbon\Carbon::parse($post->date)->format('M')}}
{{\Carbon\Carbon::parse($post->date)->format('d')}}

{{$post->title}}

@endforeach
@endsection