@include('components.upload',[
'id' => $id, // INPUT ID BIND
'target' => $target,
'refs' => [ // RELATED OBJECTS
'modal' => 'mediaManagerContainerModal', // CONTAINER MODAL
],
])
@include('components.table',[
'id' => $id, // INPUT ID BIND
'class' => 'table cell-border hover media-records',
'resource' => $resource, // FORM RESOURCE TARGET
'method' => config('const.crud.delete'), // RESOURCE METHOD AVAILABLE
'through' => $through, // THROUGH SPEC
'data' => $records, // PASS DATA IF ANY
'headers' => $headers
])