D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Views
/
Traits
/
Core
/
Filename :
HasView.php
back
Copy
<?php namespace Rappasoft\LaravelLivewireTables\Views\Traits\Core; use Rappasoft\LaravelLivewireTables\Exceptions\DataTableConfigurationException; use Rappasoft\LaravelLivewireTables\Views\{Column,Filter}; trait HasView { protected function bootedHasView(): void { if (! property_exists($this, 'view') || ! isset($this->view) || $this->view == null) { throw new DataTableConfigurationException('No View Defined'); } } public function getView(): string { return $this->view; } /** * @return $this */ public function setView(string $view): self { $this->view = $view; return $this; } public function setCustomView(string $customView): self { $this->setView($customView); return $this; } public function getViewPath(): string { return $this->view ?? ''; } }