@extends('admin.layouts.master')
@section('title', 'Page Blocks')
@section('page-title', 'Page Blocks')
@section('breadcrumbs')
Page Blocks@endsection
@section('content')
| Tenant | Page | Type | Region | Position | Actions |
@forelse ($blocks as $block)
| {{ $block->page?->tenant?->name }} |
{{ $block->page?->title }} |
{{ ucfirst($block->type) }} |
{{ $block->region }} |
{{ $block->position }} |
|
@empty
| No page blocks yet. |
@endforelse
{{ $blocks->links() }}
@endsection