@extends('dashboard.layout') @section('title', 'Instructions') @section('meta_description', 'Manage URL-specific page instructions.') @section('page_title', 'Instructions') @section('content')

Instructions

URL-specific help content shown in the side panel.

New Instruction
@if(session('success'))
{{ session('success') }}
@endif
@if($instructions->isEmpty())

No instructions yet

Create your first page instruction above.

@else
@foreach($instructions as $instruction) @endforeach
URL Preview Updated
{{ $instruction->url }} {{ Str::limit(strip_tags($instruction->content), 80) }} {{ \Carbon\Carbon::parse($instruction->updated_at)->diffForHumans() }}
Edit
@csrf @method('DELETE')
@if($instructions->hasPages())
{{ $instructions->links() }}
@endif @endif
@endsection