@@ -66,7 +66,7 @@ |
||
66 | 66 | ->success('Your category has been created successfully !'); |
67 | 67 | } |
68 | 68 | |
69 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
69 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
70 | 70 | { |
71 | 71 | return view('livewire.admin.blog.create-category'); |
72 | 72 | } |
@@ -82,7 +82,7 @@ |
||
82 | 82 | $this->perPage = config('xetaravel.pagination.blog.article_per_page', $this->perPage); |
83 | 83 | } |
84 | 84 | |
85 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
85 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
86 | 86 | { |
87 | 87 | return view('livewire.admin.blog.category', [ |
88 | 88 | 'categories' => $this->rows |
@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | public bool $showModal = false; |
33 | 33 | |
34 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
34 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
35 | 35 | { |
36 | 36 | return view('livewire.admin.blog.update-category'); |
37 | 37 | } |
@@ -88,7 +88,7 @@ |
||
88 | 88 | $this->perPage = config('xetaravel.pagination.discuss.category_per_page', $this->perPage); |
89 | 89 | } |
90 | 90 | |
91 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
91 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
92 | 92 | { |
93 | 93 | return view('livewire.admin.discuss.category', [ |
94 | 94 | 'categories' => $this->rows |
@@ -66,7 +66,7 @@ |
||
66 | 66 | ->success('Your category has been created successfully !'); |
67 | 67 | } |
68 | 68 | |
69 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
69 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
70 | 70 | { |
71 | 71 | return view('livewire.admin.discuss.create-category'); |
72 | 72 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | public bool $showModal = false; |
33 | 33 | |
34 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
34 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
35 | 35 | { |
36 | 36 | return view('livewire.admin.discuss.update-category'); |
37 | 37 | } |
@@ -56,7 +56,7 @@ |
||
56 | 56 | /** |
57 | 57 | * Get the view / contents that represent the component. |
58 | 58 | */ |
59 | - public function render(): View|Closure|string |
|
59 | + public function render(): View | Closure | string |
|
60 | 60 | { |
61 | 61 | return view('components.color-picker'); |
62 | 62 | } |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public bool $showModal = false; |
41 | 41 | |
42 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
42 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
43 | 43 | { |
44 | 44 | // Select only the roles attached to this site or the roles without assigned site_id. |
45 | 45 | $roles = Role::where('level', '<=', auth()->user()->level) |
@@ -86,7 +86,7 @@ |
||
86 | 86 | $this->perPage = config('xetaravel.pagination.user.user_per_page', $this->perPage); |
87 | 87 | } |
88 | 88 | |
89 | - public function render(): View|Application|Factory|\Illuminate\View\View |
|
89 | + public function render(): View | Application | Factory | \Illuminate\View\View |
|
90 | 90 | { |
91 | 91 | return view('livewire.admin.user.user', [ |
92 | 92 | 'users' => $this->rows |