page.blade.php 211 B

12345678
  1. @extends('layouts.app')
  2. @section('content')
  3. @while(have_posts()) @php(the_post())
  4. @include('partials.page-header')
  5. @includeFirst(['partials.content-page', 'partials.content'])
  6. @endwhile
  7. @endsection