@extends('layouts.app') @section('title', $doc->title . ' — ' . $project->name . ' Wiki') @push('styles') @endpush @section('content') @php $canEdit = auth()->user()->can('contributeDoc', $project); $backUrl = route("{$routePrefix}.index", $project); $updateUrl = route("{$routePrefix}.update", [$project, $doc]); @endphp
{{ $doc->title }} @if($canEdit) @endif @if($logs->isNotEmpty()) @endif
@if($canEdit) @else
@endif
@endsection @push('scripts') @endpush