PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Traits
/
Editing: WithCustomisations.php
<?php namespace Rappasoft\LaravelLivewireTables\Traits; use Rappasoft\LaravelLivewireTables\Traits\Configuration\CustomisationsConfiguration; use Rappasoft\LaravelLivewireTables\Traits\Helpers\CustomisationsHelpers; trait WithCustomisations { use CustomisationsConfiguration, CustomisationsHelpers; protected ?string $layout = null; protected ?string $slot = null; protected ?string $extends = null; protected ?string $section = null; /** * The view to add any modals for the table, could also be used for any non-visible html */ public function customView(): string { return 'livewire-tables::stubs.custom'; } /** * Add customView to the View */ public function renderingWithCustomisations(\Illuminate\View\View $view, array $data = []): void { if ($this->hasLayout()) { $view->layout($this->getLayout()); } if ($this->hasExtends()) { $view->extends($this->getExtends()); } if ($this->hasSection()) { $view->section($this->getSection()); } if ($this->hasSlot()) { $view->slot($this->getSlot()); } $view = $view->with([ 'customView' => $this->customView(), ]); } }
SAVE
CANCEL