{{-- One section of the showcase on a page of its own, with the way on to the next. The section's own heading repeats the app bar's title, so only a screen reader hears it. --}} @extends('livewire-material::showcase.layout') @php $keys = array_keys($sections); $at = array_search($section, $keys, true); $previous = $keys[$at - 1] ?? null; $next = $keys[$at + 1] ?? null; @endphp @section('content')
@include('livewire-material::showcase.sections.'.$section)
@endsection