I am trying to extend an update view to include a list view of some related items below the edit form.
I have two models, Publishers and Volumes, which have a many t
As @tabacitu mentioned, Backpack doesn't currently have an built in solution for this. That said, this could maybe work for you:
This would allow you to use all functionality of the nested list view including interacting with the entities without conflicting at all with the parent
vendor/backpack/base/layout.blade.phpframeless-layout.blade.php@include('backpack::inc.main_header') and @include('backpack::inc.sidebar')vendor/backpack/crud/list.blade.phpsub-list.blade.php@extends('backpack::frameless-layout')addField to add the the configuration for the new field and its related model