Sage 10 - not showing acf content on the pages

I am using acf on all of my pages for the content. This is how my homepage looks using acf fields for the data.

using the_content() or get_the_content() only outputs the string this is homepage content which is not part of acf but the normal wordpress content. Is this the correct way of fetching the data in this case or something else has to be set up?

contents of page.blade.php

@extends('layouts.app')
@section('content')
  @while(have_posts()) @php(the_post())
    @include('sage-partials.page-header')
    @php the_content() @endphp
  @endwhile
@endsection

This is more of an ACF support request, rather than a Sage one. ACF works the same way on any theme, including Sage.

I recommend reviewing the ACF documentation for how to work with ACF in your theme:

This topic was automatically closed after 42 days. New replies are no longer allowed.