single.blade.php 202 B

1234567
  1. @extends('layouts.app')
  2. @section('content')
  3. @while(have_posts()) @php(the_post())
  4. @includeFirst(['partials.content-single-' . get_post_type(), 'partials.content-single'])
  5. @endwhile
  6. @endsection