{{__("Search")}}

{{__("Recent posts")}}

    @foreach(\App\Models\Post::where('status',1)->orderByDesc('id')->limit(5)->get() as $pst)
  • {{$pst->title}}
    {{$pst->title}}

    {{$pst->subtitle}}

  • @endforeach

{{__("Groups")}}

    @foreach(\App\Models\Group::whereNull('parent_id')->get() as $grp)
  • {{$grp->name}}
  • @endforeach