@php
$title = $ensemble->name;
@endphp
@extends('layouts.app')
@section('title', $title)
@section('content')
@include('shared.button', ['type' => 'edit', 'url' => route('ensembles.edit', $ensemble)])
@include('shared.button', ['type' => 'delete', 'url' => route('ensembles.destroy', $ensemble)])
@endsection