/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
- use App\Mopie;
-
- class BaseObject extends Controller
- {
- protected $_data;
-
- public function __construct($data) {
- $this->_data = $data;
- }
-
- public function getID() {
- return $this->_data['id'];
- }
-
- public function getPoster() {
- return $this->_data['poster_path'];
- }
-
- public function getVoteAverage() {
- return $this->_data['vote_average'];
- }
-
- public function getVoteCount() {
- return $this->_data['vote_count'];
- }
-
- public function get($item = ''){
- if(empty($item)){
- return $this->_data;
- }
- if(array_key_exists($item, $this->_data)){
- return $this->_data[$item];
- }
- return null;
- }
-
- public function getCast(){
- return $this->getCredits('cast');
- }
-
Arguments
"Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php) (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php) ◀Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php) (View: /home4/nibmhwor/public_html/-/engine/themes/v1 ▶"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
Arguments
ErrorException {#944 ▶
#message: "Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php)"
#code: 0
#file: "/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
#line: 26
-previous: ErrorException {#943 ▶
#message: "Undefined index: vote_average"
#code: 0
#file: "/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
#line: 26
#severity: E_NOTICE
}
#severity: E_ERROR
}
0
/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
use App\Mopie;
class BaseObject extends Controller
{
protected $_data;
public function __construct($data) {
$this->_data = $data;
}
public function getID() {
return $this->_data['id'];
}
public function getPoster() {
return $this->_data['poster_path'];
}
public function getVoteAverage() {
return $this->_data['vote_average'];
}
public function getVoteCount() {
return $this->_data['vote_count'];
}
public function get($item = ''){
if(empty($item)){
return $this->_data;
}
if(array_key_exists($item, $this->_data)){
return $this->_data[$item];
}
return null;
}
public function getCast(){
return $this->getCredits('cast');
}
Arguments
"Undefined index: vote_average (View: /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php)"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
Arguments
ErrorException {#943 ▶
#message: "Undefined index: vote_average"
#code: 0
#file: "/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
#line: 26
#severity: E_NOTICE
}
2
/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
use App\Mopie;
class BaseObject extends Controller
{
protected $_data;
public function __construct($data) {
$this->_data = $data;
}
public function getID() {
return $this->_data['id'];
}
public function getPoster() {
return $this->_data['poster_path'];
}
public function getVoteAverage() {
return $this->_data['vote_average'];
}
public function getVoteCount() {
return $this->_data['vote_count'];
}
public function get($item = ''){
if(empty($item)){
return $this->_data;
}
if(array_key_exists($item, $this->_data)){
return $this->_data[$item];
}
return null;
}
public function getCast(){
return $this->getCredits('cast');
}
Arguments
"Undefined index: vote_average"
/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php
use App\Mopie;
class BaseObject extends Controller
{
protected $_data;
public function __construct($data) {
$this->_data = $data;
}
public function getID() {
return $this->_data['id'];
}
public function getPoster() {
return $this->_data['poster_path'];
}
public function getVoteAverage() {
return $this->_data['vote_average'];
}
public function getVoteCount() {
return $this->_data['vote_count'];
}
public function get($item = ''){
if(empty($item)){
return $this->_data;
}
if(array_key_exists($item, $this->_data)){
return $this->_data[$item];
}
return null;
}
public function getCast(){
return $this->getCredits('cast');
}
Arguments
8
"Undefined index: vote_average"
"/home4/nibmhwor/public_html/-/engine/app/Http/Controllers/TMDB/Data/BaseObject.php"
26
[]
/home4/nibmhwor/public_html/-/engine/storage/framework/views/617ddbce0a537e1663e40145508f1e0bec1c2946.php
<article id="<?php echo e($item->getID()); ?>" class="item <?php echo e($class); ?>">
<div class="thumb mb-4">
<a href="<?php echo e(Mopie::route('movie.single',['id' => $item->getID(), 'slug' => str_slug($item->getOriginalTitle())])); ?>" rel="bookmark" title="<?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)">
<div class="_img_holder">
<img class="img-fluid rounded" src="<?php echo e(Mopie::imgPoster($item->getPoster())); ?>" alt="Image <?php echo e($item->getTitle()); ?>" title="Image <?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)">
<div class="_overlay_link">
<button class="play-button play-button--small" type="button"></button>
<div class="rate"><i class="fa fa-star text-warning"></i> <span class="small text-white"><?php echo e($item->getVoteAverage()); ?>/10</span></div>
</div>
</div>
</a>
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php echo e(Mopie::route('movie.single',['id' => $item->getID(), 'slug' => str_slug($item->getOriginalTitle())])); ?>" class="_title" rel="bookmark" title="<?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)"><?php echo e($item->getTitle()); ?> (<?php echo e($item->getYear()); ?>)</a>
</h2>
</header>
</div>
</article>
<?php /**PATH /home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php ENDPATH**/ ?>
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/617ddbce0a537e1663e40145508f1e0bec1c2946.php"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
$compiled = $this->compiler->getCompiledPath($path);
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($compiled, $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/617ddbce0a537e1663e40145508f1e0bec1c2946.php"
array:11 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#136}
1 => Genre {#137}
2 => Genre {#138}
3 => Genre {#139}
4 => Genre {#140}
5 => Genre {#141}
6 => Genre {#142}
7 => Genre {#143}
8 => Genre {#144}
9 => Genre {#145}
10 => Genre {#146}
11 => Genre {#147}
12 => Genre {#148}
13 => Genre {#149}
14 => Genre {#150}
15 => Genre {#151}
16 => Genre {#152}
17 => Genre {#153}
18 => Genre {#154}
]
"errors" => ViewErrorBag {#281}
"obLevel" => 0
"data" => Person {#284}
"title" => "Michael Vegas"
"__currentLoopData" => array:630 [▶
0 => Movie {#312}
1 => Movie {#310}
2 => Movie {#311}
3 => Movie {#313}
4 => Movie {#314}
5 => Movie {#315}
6 => Movie {#316}
7 => Movie {#317}
8 => Movie {#318}
9 => Movie {#319}
10 => Movie {#320}
11 => Movie {#321}
12 => Movie {#322}
13 => Movie {#323}
14 => Movie {#324}
15 => Movie {#325}
16 => Movie {#326}
17 => Movie {#327}
18 => Movie {#328}
19 => Movie {#329}
20 => Movie {#330}
21 => Movie {#331}
22 => Movie {#332}
23 => Movie {#333}
24 => Movie {#334}
25 => Movie {#335}
26 => Movie {#336}
27 => Movie {#337}
28 => Movie {#338}
29 => Movie {#339}
30 => Movie {#340}
31 => Movie {#341}
32 => Movie {#342}
33 => Movie {#343}
34 => Movie {#344}
35 => Movie {#345}
36 => Movie {#346}
37 => Movie {#347}
38 => Movie {#348}
39 => Movie {#349}
40 => Movie {#350}
41 => Movie {#351}
42 => Movie {#352}
43 => Movie {#353}
44 => Movie {#354}
45 => Movie {#355}
46 => Movie {#356}
47 => Movie {#357}
48 => Movie {#358}
49 => Movie {#359}
50 => Movie {#360}
51 => Movie {#361}
52 => Movie {#362}
53 => Movie {#363}
54 => Movie {#364}
55 => Movie {#365}
56 => Movie {#366}
57 => Movie {#367}
58 => Movie {#368}
59 => Movie {#369}
60 => Movie {#370}
61 => Movie {#371}
62 => Movie {#372}
63 => Movie {#373}
64 => Movie {#374}
65 => Movie {#375}
66 => Movie {#376}
67 => Movie {#377}
68 => Movie {#378}
69 => Movie {#379}
70 => Movie {#380}
71 => Movie {#381}
72 => Movie {#382}
73 => Movie {#383}
74 => Movie {#384}
75 => Movie {#385}
76 => Movie {#386}
77 => Movie {#387}
78 => Movie {#388}
79 => Movie {#389}
80 => Movie {#390}
81 => Movie {#391}
82 => Movie {#392}
83 => Movie {#393}
84 => Movie {#394}
85 => Movie {#395}
86 => Movie {#396}
87 => Movie {#397}
88 => Movie {#398}
89 => Movie {#399}
90 => Movie {#400}
91 => Movie {#401}
92 => Movie {#402}
93 => Movie {#403}
94 => Movie {#404}
95 => Movie {#405}
96 => Movie {#406}
97 => Movie {#407}
98 => Movie {#408}
99 => Movie {#409}
100 => Movie {#410}
101 => Movie {#411}
102 => Movie {#412}
103 => Movie {#413}
104 => Movie {#414}
105 => Movie {#415}
106 => Movie {#416}
107 => Movie {#417}
108 => Movie {#418}
109 => Movie {#419}
110 => Movie {#420}
111 => Movie {#421}
112 => Movie {#422}
113 => Movie {#423}
114 => Movie {#424}
115 => Movie {#425}
116 => Movie {#426}
117 => Movie {#427}
118 => Movie {#428}
119 => Movie {#429}
120 => Movie {#430}
121 => Movie {#431}
122 => Movie {#432}
123 => Movie {#433}
124 => Movie {#434}
125 => Movie {#435}
126 => Movie {#436}
127 => Movie {#437}
128 => Movie {#438}
129 => Movie {#439}
130 => Movie {#440}
131 => Movie {#441}
132 => Movie {#442}
133 => Movie {#443}
134 => Movie {#444}
135 => Movie {#445}
136 => Movie {#446}
137 => Movie {#447}
138 => Movie {#448}
139 => Movie {#449}
140 => Movie {#450}
141 => Movie {#451}
142 => Movie {#452}
143 => Movie {#453}
144 => Movie {#454}
145 => Movie {#455}
146 => Movie {#456}
147 => Movie {#457}
148 => Movie {#458}
149 => Movie {#459}
150 => Movie {#460}
151 => Movie {#461}
152 => Movie {#462}
153 => Movie {#463}
154 => Movie {#464}
155 => Movie {#465}
156 => Movie {#466}
157 => Movie {#467}
158 => Movie {#468}
159 => Movie {#469}
160 => Movie {#470}
161 => Movie {#471}
162 => Movie {#472}
163 => Movie {#473}
164 => Movie {#474}
165 => Movie {#475}
166 => Movie {#476}
167 => Movie {#477}
168 => Movie {#478}
169 => Movie {#479}
170 => Movie {#480}
171 => Movie {#481}
172 => Movie {#482}
173 => Movie {#483}
174 => Movie {#484}
175 => Movie {#485}
176 => Movie {#486}
177 => Movie {#487}
178 => Movie {#488}
179 => Movie {#489}
180 => Movie {#490}
181 => Movie {#491}
182 => Movie {#492}
183 => Movie {#493}
184 => Movie {#494}
185 => Movie {#495}
186 => Movie {#496}
187 => Movie {#497}
188 => Movie {#498}
189 => Movie {#499}
190 => Movie {#500}
191 => Movie {#501}
192 => Movie {#502}
193 => Movie {#503}
194 => Movie {#504}
195 => Movie {#505}
196 => Movie {#506}
197 => Movie {#507}
198 => Movie {#508}
199 => Movie {#509}
200 => Movie {#510}
201 => Movie {#511}
202 => Movie {#512}
203 => Movie {#513}
204 => Movie {#514}
205 => Movie {#515}
206 => Movie {#516}
207 => Movie {#517}
208 => Movie {#518}
209 => Movie {#519}
210 => Movie {#520}
211 => Movie {#521}
212 => Movie {#522}
213 => Movie {#523}
214 => Movie {#524}
215 => Movie {#525}
216 => Movie {#526}
217 => Movie {#527}
218 => Movie {#528}
219 => Movie {#529}
220 => Movie {#530}
221 => Movie {#531}
222 => Movie {#532}
223 => Movie {#533}
224 => Movie {#534}
225 => Movie {#535}
226 => Movie {#536}
227 => Movie {#537}
228 => Movie {#538}
229 => Movie {#539}
230 => Movie {#540}
231 => Movie {#541}
232 => Movie {#542}
233 => Movie {#543}
234 => Movie {#544}
235 => Movie {#545}
236 => Movie {#546}
237 => Movie {#547}
238 => Movie {#548}
239 => Movie {#549}
240 => Movie {#550}
241 => Movie {#551}
242 => Movie {#552}
243 => Movie {#553}
244 => Movie {#554}
245 => Movie {#555}
246 => Movie {#556}
247 => Movie {#557}
248 => Movie {#558}
249 => Movie {#559}
250 => Movie {#560}
251 => Movie {#561}
252 => Movie {#562}
253 => Movie {#563}
254 => Movie {#564}
255 => Movie {#565}
256 => Movie {#566}
257 => Movie {#567}
258 => Movie {#568}
259 => Movie {#569}
260 => Movie {#570}
261 => Movie {#571}
262 => Movie {#572}
263 => Movie {#573}
264 => Movie {#574}
265 => Movie {#575}
266 => Movie {#576}
267 => Movie {#577}
268 => Movie {#578}
269 => Movie {#579}
270 => Movie {#580}
271 => Movie {#581}
272 => Movie {#582}
273 => Movie {#583}
274 => Movie {#584}
275 => Movie {#585}
276 => Movie {#586}
277 => Movie {#587}
278 => Movie {#588}
279 => Movie {#589}
280 => Movie {#590}
281 => Movie {#591}
282 => Movie {#592}
283 => Movie {#593}
284 => Movie {#594}
285 => Movie {#595}
286 => Movie {#596}
287 => Movie {#597}
288 => Movie {#598}
289 => Movie {#599}
290 => Movie {#600}
291 => Movie {#601}
292 => Movie {#602}
293 => Movie {#603}
294 => Movie {#604}
295 => Movie {#605}
296 => Movie {#606}
297 => Movie {#607}
298 => Movie {#608}
299 => Movie {#609}
300 => Movie {#610}
301 => Movie {#611}
302 => Movie {#612}
303 => Movie {#613}
304 => Movie {#614}
305 => Movie {#615}
306 => Movie {#616}
307 => Movie {#617}
308 => Movie {#618}
309 => Movie {#619}
310 => Movie {#620}
311 => Movie {#621}
312 => Movie {#622}
313 => Movie {#623}
314 => Movie {#624}
315 => Movie {#625}
316 => Movie {#626}
317 => Movie {#627}
318 => Movie {#628}
319 => Movie {#629}
320 => Movie {#630}
321 => Movie {#631}
322 => Movie {#632}
323 => Movie {#633}
324 => Movie {#634}
325 => Movie {#635}
326 => Movie {#636}
327 => Movie {#637}
328 => Movie {#638}
329 => Movie {#639}
330 => Movie {#640}
331 => Movie {#641}
332 => Movie {#642}
333 => Movie {#643}
334 => Movie {#644}
335 => Movie {#645}
336 => Movie {#646}
337 => Movie {#647}
338 => Movie {#648}
339 => Movie {#649}
340 => Movie {#650}
341 => Movie {#651}
342 => Movie {#652}
343 => Movie {#653}
344 => Movie {#654}
345 => Movie {#655}
346 => Movie {#656}
347 => Movie {#657}
348 => Movie {#658}
349 => Movie {#659}
350 => Movie {#660}
351 => Movie {#661}
352 => Movie {#662}
353 => Movie {#663}
354 => Movie {#664}
355 => Movie {#665}
356 => Movie {#666}
357 => Movie {#667}
358 => Movie {#668}
359 => Movie {#669}
360 => Movie {#670}
361 => Movie {#671}
362 => Movie {#672}
363 => Movie {#673}
364 => Movie {#674}
365 => Movie {#675}
366 => Movie {#676}
367 => Movie {#677}
368 => Movie {#678}
369 => Movie {#679}
370 => Movie {#680}
371 => Movie {#681}
372 => Movie {#682}
373 => Movie {#683}
374 => Movie {#684}
375 => Movie {#685}
376 => Movie {#686}
377 => Movie {#687}
378 => Movie {#688}
379 => Movie {#689}
380 => Movie {#690}
381 => Movie {#691}
382 => Movie {#692}
383 => Movie {#693}
384 => Movie {#694}
385 => Movie {#695}
386 => Movie {#696}
387 => Movie {#697}
388 => Movie {#698}
389 => Movie {#699}
390 => Movie {#700}
391 => Movie {#701}
392 => Movie {#702}
393 => Movie {#703}
394 => Movie {#704}
395 => Movie {#705}
396 => Movie {#706}
397 => Movie {#707}
398 => Movie {#708}
399 => Movie {#709}
400 => Movie {#710}
401 => Movie {#711}
402 => Movie {#712}
403 => Movie {#713}
404 => Movie {#714}
405 => Movie {#715}
406 => Movie {#716}
407 => Movie {#717}
408 => Movie {#718}
409 => Movie {#719}
410 => Movie {#720}
411 => Movie {#721}
412 => Movie {#722}
413 => Movie {#723}
414 => Movie {#724}
415 => Movie {#725}
416 => Movie {#726}
417 => Movie {#727}
418 => Movie {#728}
419 => Movie {#729}
420 => Movie {#730}
421 => Movie {#731}
422 => Movie {#732}
423 => Movie {#733}
424 => Movie {#734}
425 => Movie {#735}
426 => Movie {#736}
427 => Movie {#737}
428 => Movie {#738}
429 => Movie {#739}
430 => Movie {#740}
431 => Movie {#741}
432 => Movie {#742}
433 => Movie {#743}
434 => Movie {#744}
435 => Movie {#745}
436 => Movie {#746}
437 => Movie {#747}
438 => Movie {#748}
439 => Movie {#749}
440 => Movie {#750}
441 => Movie {#751}
442 => Movie {#752}
443 => Movie {#753}
444 => Movie {#754}
445 => Movie {#755}
446 => Movie {#756}
447 => Movie {#757}
448 => Movie {#758}
449 => Movie {#759}
450 => Movie {#760}
451 => Movie {#761}
452 => Movie {#762}
453 => Movie {#763}
454 => Movie {#764}
455 => Movie {#765}
456 => Movie {#766}
457 => Movie {#767}
458 => Movie {#768}
459 => Movie {#769}
460 => Movie {#770}
461 => Movie {#771}
462 => Movie {#772}
463 => Movie {#773}
464 => Movie {#774}
465 => Movie {#775}
466 => Movie {#776}
467 => Movie {#777}
468 => Movie {#778}
469 => Movie {#779}
470 => Movie {#780}
471 => Movie {#781}
472 => Movie {#782}
473 => Movie {#783}
474 => Movie {#784}
475 => Movie {#785}
476 => Movie {#786}
477 => Movie {#787}
478 => Movie {#788}
479 => Movie {#789}
480 => Movie {#790}
481 => Movie {#791}
482 => Movie {#792}
483 => Movie {#793}
484 => Movie {#794}
485 => Movie {#795}
486 => Movie {#796}
487 => Movie {#797}
488 => Movie {#798}
489 => Movie {#799}
490 => Movie {#800}
491 => Movie {#801}
492 => Movie {#802}
493 => Movie {#803}
494 => Movie {#804}
495 => Movie {#805}
496 => Movie {#806}
497 => Movie {#807}
498 => Movie {#808}
499 => Movie {#809}
500 => Movie {#810}
501 => Movie {#811}
502 => Movie {#812}
503 => Movie {#813}
504 => Movie {#814}
505 => Movie {#815}
506 => Movie {#816}
507 => Movie {#817}
508 => Movie {#818}
509 => Movie {#819}
510 => Movie {#820}
511 => Movie {#821}
512 => Movie {#822}
513 => Movie {#823}
514 => Movie {#824}
515 => Movie {#825}
516 => Movie {#826}
517 => Movie {#827}
518 => Movie {#828}
519 => Movie {#829}
520 => Movie {#830}
521 => Movie {#831}
522 => Movie {#832}
523 => Movie {#833}
524 => Movie {#834}
525 => Movie {#835}
526 => Movie {#836}
527 => Movie {#837}
528 => Movie {#838}
529 => Movie {#839}
530 => Movie {#840}
531 => Movie {#841}
532 => Movie {#842}
533 => Movie {#843}
534 => Movie {#844}
535 => Movie {#845}
536 => Movie {#846}
537 => Movie {#847}
538 => Movie {#848}
539 => Movie {#849}
540 => Movie {#850}
541 => Movie {#851}
542 => Movie {#852}
543 => Movie {#853}
544 => Movie {#854}
545 => Movie {#855}
546 => Movie {#856}
547 => Movie {#857}
548 => Movie {#858}
549 => Movie {#859}
550 => Movie {#860}
551 => Movie {#861}
552 => Movie {#862}
553 => Movie {#863}
554 => Movie {#864}
555 => Movie {#865}
556 => Movie {#866}
557 => Movie {#867}
558 => Movie {#868}
559 => Movie {#869}
560 => Movie {#870}
561 => Movie {#871}
562 => Movie {#872}
563 => Movie {#873}
564 => Movie {#874}
565 => Movie {#875}
566 => Movie {#876}
567 => Movie {#877}
568 => Movie {#878}
569 => Movie {#879}
570 => Movie {#880}
571 => Movie {#881}
572 => Movie {#882}
573 => Movie {#883}
574 => Movie {#884}
575 => Movie {#885}
576 => Movie {#886}
577 => Movie {#887}
578 => Movie {#888}
579 => Movie {#889}
580 => Movie {#890}
581 => Movie {#891}
582 => Movie {#892}
583 => Movie {#893}
584 => Movie {#894}
585 => Movie {#895}
586 => Movie {#896}
587 => Movie {#897}
588 => Movie {#898}
589 => Movie {#899}
590 => Movie {#900}
591 => Movie {#901}
592 => Movie {#902}
593 => Movie {#903}
594 => Movie {#904}
595 => Movie {#905}
596 => Movie {#906}
597 => Movie {#907}
598 => Movie {#908}
599 => Movie {#909}
600 => Movie {#910}
601 => Movie {#911}
602 => Movie {#912}
603 => Movie {#913}
604 => Movie {#914}
605 => Movie {#915}
606 => Movie {#916}
607 => Movie {#917}
608 => Movie {#918}
609 => Movie {#919}
610 => Movie {#920}
611 => Movie {#921}
612 => Movie {#922}
613 => Movie {#923}
614 => Movie {#924}
615 => Movie {#925}
616 => Movie {#926}
617 => Movie {#927}
618 => Movie {#928}
619 => Movie {#929}
620 => Movie {#930}
621 => Movie {#931}
622 => Movie {#932}
623 => Movie {#933}
624 => Movie {#934}
625 => Movie {#935}
626 => Movie {#936}
627 => Movie {#937}
628 => Movie {#938}
629 => Movie {#939}
]
"item" => Movie {#530}
"loop" => {#940}
"class" => "col-6 col-md-2"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
public function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
Arguments
"/home4/nibmhwor/public_html/-/engine/themes/v1/_item_movie.blade.php"
array:11 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#136}
1 => Genre {#137}
2 => Genre {#138}
3 => Genre {#139}
4 => Genre {#140}
5 => Genre {#141}
6 => Genre {#142}
7 => Genre {#143}
8 => Genre {#144}
9 => Genre {#145}
10 => Genre {#146}
11 => Genre {#147}
12 => Genre {#148}
13 => Genre {#149}
14 => Genre {#150}
15 => Genre {#151}
16 => Genre {#152}
17 => Genre {#153}
18 => Genre {#154}
]
"errors" => ViewErrorBag {#281}
"obLevel" => 0
"data" => Person {#284}
"title" => "Michael Vegas"
"__currentLoopData" => array:630 [▶
0 => Movie {#312}
1 => Movie {#310}
2 => Movie {#311}
3 => Movie {#313}
4 => Movie {#314}
5 => Movie {#315}
6 => Movie {#316}
7 => Movie {#317}
8 => Movie {#318}
9 => Movie {#319}
10 => Movie {#320}
11 => Movie {#321}
12 => Movie {#322}
13 => Movie {#323}
14 => Movie {#324}
15 => Movie {#325}
16 => Movie {#326}
17 => Movie {#327}
18 => Movie {#328}
19 => Movie {#329}
20 => Movie {#330}
21 => Movie {#331}
22 => Movie {#332}
23 => Movie {#333}
24 => Movie {#334}
25 => Movie {#335}
26 => Movie {#336}
27 => Movie {#337}
28 => Movie {#338}
29 => Movie {#339}
30 => Movie {#340}
31 => Movie {#341}
32 => Movie {#342}
33 => Movie {#343}
34 => Movie {#344}
35 => Movie {#345}
36 => Movie {#346}
37 => Movie {#347}
38 => Movie {#348}
39 => Movie {#349}
40 => Movie {#350}
41 => Movie {#351}
42 => Movie {#352}
43 => Movie {#353}
44 => Movie {#354}
45 => Movie {#355}
46 => Movie {#356}
47 => Movie {#357}
48 => Movie {#358}
49 => Movie {#359}
50 => Movie {#360}
51 => Movie {#361}
52 => Movie {#362}
53 => Movie {#363}
54 => Movie {#364}
55 => Movie {#365}
56 => Movie {#366}
57 => Movie {#367}
58 => Movie {#368}
59 => Movie {#369}
60 => Movie {#370}
61 => Movie {#371}
62 => Movie {#372}
63 => Movie {#373}
64 => Movie {#374}
65 => Movie {#375}
66 => Movie {#376}
67 => Movie {#377}
68 => Movie {#378}
69 => Movie {#379}
70 => Movie {#380}
71 => Movie {#381}
72 => Movie {#382}
73 => Movie {#383}
74 => Movie {#384}
75 => Movie {#385}
76 => Movie {#386}
77 => Movie {#387}
78 => Movie {#388}
79 => Movie {#389}
80 => Movie {#390}
81 => Movie {#391}
82 => Movie {#392}
83 => Movie {#393}
84 => Movie {#394}
85 => Movie {#395}
86 => Movie {#396}
87 => Movie {#397}
88 => Movie {#398}
89 => Movie {#399}
90 => Movie {#400}
91 => Movie {#401}
92 => Movie {#402}
93 => Movie {#403}
94 => Movie {#404}
95 => Movie {#405}
96 => Movie {#406}
97 => Movie {#407}
98 => Movie {#408}
99 => Movie {#409}
100 => Movie {#410}
101 => Movie {#411}
102 => Movie {#412}
103 => Movie {#413}
104 => Movie {#414}
105 => Movie {#415}
106 => Movie {#416}
107 => Movie {#417}
108 => Movie {#418}
109 => Movie {#419}
110 => Movie {#420}
111 => Movie {#421}
112 => Movie {#422}
113 => Movie {#423}
114 => Movie {#424}
115 => Movie {#425}
116 => Movie {#426}
117 => Movie {#427}
118 => Movie {#428}
119 => Movie {#429}
120 => Movie {#430}
121 => Movie {#431}
122 => Movie {#432}
123 => Movie {#433}
124 => Movie {#434}
125 => Movie {#435}
126 => Movie {#436}
127 => Movie {#437}
128 => Movie {#438}
129 => Movie {#439}
130 => Movie {#440}
131 => Movie {#441}
132 => Movie {#442}
133 => Movie {#443}
134 => Movie {#444}
135 => Movie {#445}
136 => Movie {#446}
137 => Movie {#447}
138 => Movie {#448}
139 => Movie {#449}
140 => Movie {#450}
141 => Movie {#451}
142 => Movie {#452}
143 => Movie {#453}
144 => Movie {#454}
145 => Movie {#455}
146 => Movie {#456}
147 => Movie {#457}
148 => Movie {#458}
149 => Movie {#459}
150 => Movie {#460}
151 => Movie {#461}
152 => Movie {#462}
153 => Movie {#463}
154 => Movie {#464}
155 => Movie {#465}
156 => Movie {#466}
157 => Movie {#467}
158 => Movie {#468}
159 => Movie {#469}
160 => Movie {#470}
161 => Movie {#471}
162 => Movie {#472}
163 => Movie {#473}
164 => Movie {#474}
165 => Movie {#475}
166 => Movie {#476}
167 => Movie {#477}
168 => Movie {#478}
169 => Movie {#479}
170 => Movie {#480}
171 => Movie {#481}
172 => Movie {#482}
173 => Movie {#483}
174 => Movie {#484}
175 => Movie {#485}
176 => Movie {#486}
177 => Movie {#487}
178 => Movie {#488}
179 => Movie {#489}
180 => Movie {#490}
181 => Movie {#491}
182 => Movie {#492}
183 => Movie {#493}
184 => Movie {#494}
185 => Movie {#495}
186 => Movie {#496}
187 => Movie {#497}
188 => Movie {#498}
189 => Movie {#499}
190 => Movie {#500}
191 => Movie {#501}
192 => Movie {#502}
193 => Movie {#503}
194 => Movie {#504}
195 => Movie {#505}
196 => Movie {#506}
197 => Movie {#507}
198 => Movie {#508}
199 => Movie {#509}
200 => Movie {#510}
201 => Movie {#511}
202 => Movie {#512}
203 => Movie {#513}
204 => Movie {#514}
205 => Movie {#515}
206 => Movie {#516}
207 => Movie {#517}
208 => Movie {#518}
209 => Movie {#519}
210 => Movie {#520}
211 => Movie {#521}
212 => Movie {#522}
213 => Movie {#523}
214 => Movie {#524}
215 => Movie {#525}
216 => Movie {#526}
217 => Movie {#527}
218 => Movie {#528}
219 => Movie {#529}
220 => Movie {#530}
221 => Movie {#531}
222 => Movie {#532}
223 => Movie {#533}
224 => Movie {#534}
225 => Movie {#535}
226 => Movie {#536}
227 => Movie {#537}
228 => Movie {#538}
229 => Movie {#539}
230 => Movie {#540}
231 => Movie {#541}
232 => Movie {#542}
233 => Movie {#543}
234 => Movie {#544}
235 => Movie {#545}
236 => Movie {#546}
237 => Movie {#547}
238 => Movie {#548}
239 => Movie {#549}
240 => Movie {#550}
241 => Movie {#551}
242 => Movie {#552}
243 => Movie {#553}
244 => Movie {#554}
245 => Movie {#555}
246 => Movie {#556}
247 => Movie {#557}
248 => Movie {#558}
249 => Movie {#559}
250 => Movie {#560}
251 => Movie {#561}
252 => Movie {#562}
253 => Movie {#563}
254 => Movie {#564}
255 => Movie {#565}
256 => Movie {#566}
257 => Movie {#567}
258 => Movie {#568}
259 => Movie {#569}
260 => Movie {#570}
261 => Movie {#571}
262 => Movie {#572}
263 => Movie {#573}
264 => Movie {#574}
265 => Movie {#575}
266 => Movie {#576}
267 => Movie {#577}
268 => Movie {#578}
269 => Movie {#579}
270 => Movie {#580}
271 => Movie {#581}
272 => Movie {#582}
273 => Movie {#583}
274 => Movie {#584}
275 => Movie {#585}
276 => Movie {#586}
277 => Movie {#587}
278 => Movie {#588}
279 => Movie {#589}
280 => Movie {#590}
281 => Movie {#591}
282 => Movie {#592}
283 => Movie {#593}
284 => Movie {#594}
285 => Movie {#595}
286 => Movie {#596}
287 => Movie {#597}
288 => Movie {#598}
289 => Movie {#599}
290 => Movie {#600}
291 => Movie {#601}
292 => Movie {#602}
293 => Movie {#603}
294 => Movie {#604}
295 => Movie {#605}
296 => Movie {#606}
297 => Movie {#607}
298 => Movie {#608}
299 => Movie {#609}
300 => Movie {#610}
301 => Movie {#611}
302 => Movie {#612}
303 => Movie {#613}
304 => Movie {#614}
305 => Movie {#615}
306 => Movie {#616}
307 => Movie {#617}
308 => Movie {#618}
309 => Movie {#619}
310 => Movie {#620}
311 => Movie {#621}
312 => Movie {#622}
313 => Movie {#623}
314 => Movie {#624}
315 => Movie {#625}
316 => Movie {#626}
317 => Movie {#627}
318 => Movie {#628}
319 => Movie {#629}
320 => Movie {#630}
321 => Movie {#631}
322 => Movie {#632}
323 => Movie {#633}
324 => Movie {#634}
325 => Movie {#635}
326 => Movie {#636}
327 => Movie {#637}
328 => Movie {#638}
329 => Movie {#639}
330 => Movie {#640}
331 => Movie {#641}
332 => Movie {#642}
333 => Movie {#643}
334 => Movie {#644}
335 => Movie {#645}
336 => Movie {#646}
337 => Movie {#647}
338 => Movie {#648}
339 => Movie {#649}
340 => Movie {#650}
341 => Movie {#651}
342 => Movie {#652}
343 => Movie {#653}
344 => Movie {#654}
345 => Movie {#655}
346 => Movie {#656}
347 => Movie {#657}
348 => Movie {#658}
349 => Movie {#659}
350 => Movie {#660}
351 => Movie {#661}
352 => Movie {#662}
353 => Movie {#663}
354 => Movie {#664}
355 => Movie {#665}
356 => Movie {#666}
357 => Movie {#667}
358 => Movie {#668}
359 => Movie {#669}
360 => Movie {#670}
361 => Movie {#671}
362 => Movie {#672}
363 => Movie {#673}
364 => Movie {#674}
365 => Movie {#675}
366 => Movie {#676}
367 => Movie {#677}
368 => Movie {#678}
369 => Movie {#679}
370 => Movie {#680}
371 => Movie {#681}
372 => Movie {#682}
373 => Movie {#683}
374 => Movie {#684}
375 => Movie {#685}
376 => Movie {#686}
377 => Movie {#687}
378 => Movie {#688}
379 => Movie {#689}
380 => Movie {#690}
381 => Movie {#691}
382 => Movie {#692}
383 => Movie {#693}
384 => Movie {#694}
385 => Movie {#695}
386 => Movie {#696}
387 => Movie {#697}
388 => Movie {#698}
389 => Movie {#699}
390 => Movie {#700}
391 => Movie {#701}
392 => Movie {#702}
393 => Movie {#703}
394 => Movie {#704}
395 => Movie {#705}
396 => Movie {#706}
397 => Movie {#707}
398 => Movie {#708}
399 => Movie {#709}
400 => Movie {#710}
401 => Movie {#711}
402 => Movie {#712}
403 => Movie {#713}
404 => Movie {#714}
405 => Movie {#715}
406 => Movie {#716}
407 => Movie {#717}
408 => Movie {#718}
409 => Movie {#719}
410 => Movie {#720}
411 => Movie {#721}
412 => Movie {#722}
413 => Movie {#723}
414 => Movie {#724}
415 => Movie {#725}
416 => Movie {#726}
417 => Movie {#727}
418 => Movie {#728}
419 => Movie {#729}
420 => Movie {#730}
421 => Movie {#731}
422 => Movie {#732}
423 => Movie {#733}
424 => Movie {#734}
425 => Movie {#735}
426 => Movie {#736}
427 => Movie {#737}
428 => Movie {#738}
429 => Movie {#739}
430 => Movie {#740}
431 => Movie {#741}
432 => Movie {#742}
433 => Movie {#743}
434 => Movie {#744}
435 => Movie {#745}
436 => Movie {#746}
437 => Movie {#747}
438 => Movie {#748}
439 => Movie {#749}
440 => Movie {#750}
441 => Movie {#751}
442 => Movie {#752}
443 => Movie {#753}
444 => Movie {#754}
445 => Movie {#755}
446 => Movie {#756}
447 => Movie {#757}
448 => Movie {#758}
449 => Movie {#759}
450 => Movie {#760}
451 => Movie {#761}
452 => Movie {#762}
453 => Movie {#763}
454 => Movie {#764}
455 => Movie {#765}
456 => Movie {#766}
457 => Movie {#767}
458 => Movie {#768}
459 => Movie {#769}
460 => Movie {#770}
461 => Movie {#771}
462 => Movie {#772}
463 => Movie {#773}
464 => Movie {#774}
465 => Movie {#775}
466 => Movie {#776}
467 => Movie {#777}
468 => Movie {#778}
469 => Movie {#779}
470 => Movie {#780}
471 => Movie {#781}
472 => Movie {#782}
473 => Movie {#783}
474 => Movie {#784}
475 => Movie {#785}
476 => Movie {#786}
477 => Movie {#787}
478 => Movie {#788}
479 => Movie {#789}
480 => Movie {#790}
481 => Movie {#791}
482 => Movie {#792}
483 => Movie {#793}
484 => Movie {#794}
485 => Movie {#795}
486 => Movie {#796}
487 => Movie {#797}
488 => Movie {#798}
489 => Movie {#799}
490 => Movie {#800}
491 => Movie {#801}
492 => Movie {#802}
493 => Movie {#803}
494 => Movie {#804}
495 => Movie {#805}
496 => Movie {#806}
497 => Movie {#807}
498 => Movie {#808}
499 => Movie {#809}
500 => Movie {#810}
501 => Movie {#811}
502 => Movie {#812}
503 => Movie {#813}
504 => Movie {#814}
505 => Movie {#815}
506 => Movie {#816}
507 => Movie {#817}
508 => Movie {#818}
509 => Movie {#819}
510 => Movie {#820}
511 => Movie {#821}
512 => Movie {#822}
513 => Movie {#823}
514 => Movie {#824}
515 => Movie {#825}
516 => Movie {#826}
517 => Movie {#827}
518 => Movie {#828}
519 => Movie {#829}
520 => Movie {#830}
521 => Movie {#831}
522 => Movie {#832}
523 => Movie {#833}
524 => Movie {#834}
525 => Movie {#835}
526 => Movie {#836}
527 => Movie {#837}
528 => Movie {#838}
529 => Movie {#839}
530 => Movie {#840}
531 => Movie {#841}
532 => Movie {#842}
533 => Movie {#843}
534 => Movie {#844}
535 => Movie {#845}
536 => Movie {#846}
537 => Movie {#847}
538 => Movie {#848}
539 => Movie {#849}
540 => Movie {#850}
541 => Movie {#851}
542 => Movie {#852}
543 => Movie {#853}
544 => Movie {#854}
545 => Movie {#855}
546 => Movie {#856}
547 => Movie {#857}
548 => Movie {#858}
549 => Movie {#859}
550 => Movie {#860}
551 => Movie {#861}
552 => Movie {#862}
553 => Movie {#863}
554 => Movie {#864}
555 => Movie {#865}
556 => Movie {#866}
557 => Movie {#867}
558 => Movie {#868}
559 => Movie {#869}
560 => Movie {#870}
561 => Movie {#871}
562 => Movie {#872}
563 => Movie {#873}
564 => Movie {#874}
565 => Movie {#875}
566 => Movie {#876}
567 => Movie {#877}
568 => Movie {#878}
569 => Movie {#879}
570 => Movie {#880}
571 => Movie {#881}
572 => Movie {#882}
573 => Movie {#883}
574 => Movie {#884}
575 => Movie {#885}
576 => Movie {#886}
577 => Movie {#887}
578 => Movie {#888}
579 => Movie {#889}
580 => Movie {#890}
581 => Movie {#891}
582 => Movie {#892}
583 => Movie {#893}
584 => Movie {#894}
585 => Movie {#895}
586 => Movie {#896}
587 => Movie {#897}
588 => Movie {#898}
589 => Movie {#899}
590 => Movie {#900}
591 => Movie {#901}
592 => Movie {#902}
593 => Movie {#903}
594 => Movie {#904}
595 => Movie {#905}
596 => Movie {#906}
597 => Movie {#907}
598 => Movie {#908}
599 => Movie {#909}
600 => Movie {#910}
601 => Movie {#911}
602 => Movie {#912}
603 => Movie {#913}
604 => Movie {#914}
605 => Movie {#915}
606 => Movie {#916}
607 => Movie {#917}
608 => Movie {#918}
609 => Movie {#919}
610 => Movie {#920}
611 => Movie {#921}
612 => Movie {#922}
613 => Movie {#923}
614 => Movie {#924}
615 => Movie {#925}
616 => Movie {#926}
617 => Movie {#927}
618 => Movie {#928}
619 => Movie {#929}
620 => Movie {#930}
621 => Movie {#931}
622 => Movie {#932}
623 => Movie {#933}
624 => Movie {#934}
625 => Movie {#935}
626 => Movie {#936}
627 => Movie {#937}
628 => Movie {#938}
629 => Movie {#939}
]
"item" => Movie {#530}
"loop" => {#940}
"class" => "col-6 col-md-2"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
protected function renderContents()
{
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return array|string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Exception $e) {
$this->factory->flushState();
throw $e;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/home4/nibmhwor/public_html/-/engine/storage/framework/views/09bc7b03ef7f604355966e8edc6d1a6fe1ccbfad.php
<li><?php echo e(__('utilities.know_for')); ?>: <span><?php echo e($data->getKnownForDepartment()); ?></span></li>
<li><?php echo e(__('utilities.birthday')); ?>: <span><?php echo e($data->getBirthday()); ?></span></li>
<li><?php echo e(__('utilities.place_of_birth')); ?>: <span><?php echo e($data->getPlaceOfBirth()); ?></span></li>
<li><?php echo e(__('utilities.also_know_as')); ?>: <span><?php echo e($data->getAlsoKnownAs()); ?></span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="py-4">
<div class="container p-3 p-md-4 rounded-lg mb-5">
<div class="row">
<div class="col-12 mb-4">
<h3 class="h4"><?php echo e(__('section.title.movie_list_of', ['name' => $data->getName()])); ?></h3>
</div>
<?php $__currentLoopData = $data->getMovieCreditCasts(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make(config('tmdb.theme').'._item_movie', ['class' => 'col-6 col-md-2'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make(config('tmdb.theme').'.layouts', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home4/nibmhwor/public_html/-/engine/themes/v1/people.blade.php ENDPATH**/ ?>
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/09bc7b03ef7f604355966e8edc6d1a6fe1ccbfad.php"
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
$compiled = $this->compiler->getCompiledPath($path);
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($compiled, $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
Arguments
"/home4/nibmhwor/public_html/-/engine/storage/framework/views/09bc7b03ef7f604355966e8edc6d1a6fe1ccbfad.php"
array:6 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#136}
1 => Genre {#137}
2 => Genre {#138}
3 => Genre {#139}
4 => Genre {#140}
5 => Genre {#141}
6 => Genre {#142}
7 => Genre {#143}
8 => Genre {#144}
9 => Genre {#145}
10 => Genre {#146}
11 => Genre {#147}
12 => Genre {#148}
13 => Genre {#149}
14 => Genre {#150}
15 => Genre {#151}
16 => Genre {#152}
17 => Genre {#153}
18 => Genre {#154}
]
"errors" => ViewErrorBag {#281}
"data" => Person {#284}
"title" => "Michael Vegas"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
public function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
Arguments
"/home4/nibmhwor/public_html/-/engine/themes/v1/people.blade.php"
array:6 [▶
"__env" => Factory {#117}
"app" => Application {#2}
"genre_list" => array:19 [▶
0 => Genre {#136}
1 => Genre {#137}
2 => Genre {#138}
3 => Genre {#139}
4 => Genre {#140}
5 => Genre {#141}
6 => Genre {#142}
7 => Genre {#143}
8 => Genre {#144}
9 => Genre {#145}
10 => Genre {#146}
11 => Genre {#147}
12 => Genre {#148}
13 => Genre {#149}
14 => Genre {#150}
15 => Genre {#151}
16 => Genre {#152}
17 => Genre {#153}
18 => Genre {#154}
]
"errors" => ViewErrorBag {#281}
"data" => Person {#284}
"title" => "Michael Vegas"
]
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
protected function renderContents()
{
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return array|string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Exception $e) {
$this->factory->flushState();
throw $e;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Http/Response.php
* @return $this
*/
public function setContent($content)
{
$this->original = $content;
// If the content is "JSONable" we will set the appropriate header and convert
// the content to JSON. This is useful when returning something like models
// from routes that will be automatically transformed to their JSON form.
if ($this->shouldBeJson($content)) {
$this->header('Content-Type', 'application/json');
$content = $this->morphToJson($content);
}
// If this content implements the "Renderable" interface then we will call the
// render method on the object so we will avoid any "__toString" exceptions
// that might be thrown and have their errors obscured by PHP's handling.
elseif ($content instanceof Renderable) {
$content = $content->render();
}
parent::setContent($content);
return $this;
}
/**
* Determine if the given content should be turned into JSON.
*
* @param mixed $content
* @return bool
*/
protected function shouldBeJson($content)
{
return $content instanceof Arrayable ||
$content instanceof Jsonable ||
$content instanceof ArrayObject ||
$content instanceof JsonSerializable ||
is_array($content);
/home4/nibmhwor/public_html/-/engine/vendor/symfony/http-foundation/Response.php
500 => 'Internal Server Error',
501 => 'Not Implemented',
502 => 'Bad Gateway',
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
505 => 'HTTP Version Not Supported',
506 => 'Variant Also Negotiates', // RFC2295
507 => 'Insufficient Storage', // RFC4918
508 => 'Loop Detected', // RFC5842
510 => 'Not Extended', // RFC2774
511 => 'Network Authentication Required', // RFC6585
];
/**
* @throws \InvalidArgumentException When the HTTP status code is not valid
*/
public function __construct($content = '', int $status = 200, array $headers = [])
{
$this->headers = new ResponseHeaderBag($headers);
$this->setContent($content);
$this->setStatusCode($status);
$this->setProtocolVersion('1.0');
}
/**
* Factory method for chainability.
*
* Example:
*
* return Response::create($body, 200)
* ->setSharedMaxAge(300);
*
* @param mixed $content The response content, see setContent()
* @param int $status The response status code
* @param array $headers An array of response headers
*
* @return static
*/
public static function create($content = '', $status = 200, $headers = [])
{
Arguments
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*/
public static function toResponse($request, $response)
{
if ($response instanceof Responsable) {
$response = $response->toResponse($request);
}
if ($response instanceof PsrResponseInterface) {
$response = (new HttpFoundationFactory)->createResponse($response);
} elseif ($response instanceof Model && $response->wasRecentlyCreated) {
$response = new JsonResponse($response, 201);
} elseif (! $response instanceof SymfonyResponse &&
($response instanceof Arrayable ||
$response instanceof Jsonable ||
$response instanceof ArrayObject ||
$response instanceof JsonSerializable ||
is_array($response))) {
$response = new JsonResponse($response);
} elseif (! $response instanceof SymfonyResponse) {
$response = new Response($response);
}
if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
$response->setNotModified();
}
return $response->prepare($request);
}
/**
* Substitute the route bindings onto the route.
*
* @param \Illuminate\Routing\Route $route
* @return \Illuminate\Routing\Route
*
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
*/
public function substituteBindings($route)
{
foreach ($route->parameters() as $key => $value) {
Arguments
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
* Sort the given middleware by priority.
*
* @param \Illuminate\Support\Collection $middlewares
* @return array
*/
protected function sortMiddleware(Collection $middlewares)
{
return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all();
}
/**
* Create a response instance from the given value.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param mixed $response
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function prepareResponse($request, $response)
{
return static::toResponse($request, $response);
}
/**
* Static version of prepareResponse.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param mixed $response
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public static function toResponse($request, $response)
{
if ($response instanceof Responsable) {
$response = $response->toResponse($request);
}
if ($response instanceof PsrResponseInterface) {
$response = (new HttpFoundationFactory)->createResponse($response);
} elseif ($response instanceof Model && $response->wasRecentlyCreated) {
$response = new JsonResponse($response, 201);
} elseif (! $response instanceof SymfonyResponse &&
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
View {#306}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
View {#306}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/app/Http/Middleware/Language.php
* @return mixed
*/
public function handle($request, Closure $next)
{
$locales = config('app.locales');
// Check if the first segment matches a language code
if (!array_key_exists($request->segment(1), config('app.locales'))) {
// Store segments in array
$segments = $request->segments();
// Set the default language code as the first segment
$segments = array_prepend($segments, config('app.fallback_locale'));
// Redirect to the correct url
return redirect()->to(implode('/', $segments));
}
// The request already contains the language code
return $next($request);
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#237 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
*/
public function __construct(Registrar $router)
{
$this->router = $router;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->router->substituteBindings($route = $request->route());
$this->router->substituteImplicitBindings($route);
return $next($request);
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#257 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Session\TokenMismatchException
*/
public function handle($request, Closure $next)
{
if (
$this->isReading($request) ||
$this->runningUnitTests() ||
$this->inExceptArray($request) ||
$this->tokensMatch($request)
) {
return tap($next($request), function ($response) use ($request) {
if ($this->shouldAddXsrfTokenCookie()) {
$this->addCookieToResponse($request, $response);
}
});
}
throw new TokenMismatchException('CSRF token mismatch.');
}
/**
* Determine if the HTTP request uses a ‘read’ verb.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function isReading($request)
{
return in_array($request->method(), ['HEAD', 'GET', 'OPTIONS']);
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#258 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// If the current session has an "errors" variable bound to it, we will share
// its value with all view instances so the views can easily access errors
// without having to bind. An empty bag is set when there aren't errors.
$this->view->share(
'errors', $request->session()->get('errors') ?: new ViewErrorBag
);
// Putting the errors in the view for every view allows the developer to just
// assume that some errors are always available, which is convenient since
// they don't have to continually run checks for the presence of errors.
return $next($request);
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#259 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (! $this->sessionConfigured()) {
return $next($request);
}
// If a session driver has been configured, we will need to start the session here
// so that the data is ready for an application. Note that the Laravel sessions
// do not make use of PHP "native" sessions in any way since they are crappy.
$request->setLaravelSession(
$session = $this->startSession($request)
);
$this->collectGarbage($session);
$response = $next($request);
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
// Again, if the session has been configured we will need to close out the session
// so that the attributes may be persisted to some storage medium. We will also
// add the session identifier cookie to the application response headers now.
$this->saveSession($request);
return $response;
}
/**
* Start the session for the given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Contracts\Session\Session
*/
protected function startSession(Request $request)
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#260 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php
* Create a new CookieQueue instance.
*
* @param \Illuminate\Contracts\Cookie\QueueingFactory $cookies
* @return void
*/
public function __construct(CookieJar $cookies)
{
$this->cookies = $cookies;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
foreach ($this->cookies->getQueuedCookies() as $cookie) {
$response->headers->setCookie($cookie);
}
return $response;
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#261 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php
* Disable encryption for the given cookie name(s).
*
* @param string|array $name
* @return void
*/
public function disableFor($name)
{
$this->except = array_merge($this->except, (array) $name);
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle($request, Closure $next)
{
return $this->encrypt($next($this->decrypt($request)));
}
/**
* Decrypt the cookies on the request.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @return \Symfony\Component\HttpFoundation\Request
*/
protected function decrypt(Request $request)
{
foreach ($request->cookies as $key => $cookie) {
if ($this->isDisabled($key)) {
continue;
}
try {
$request->cookies->set($key, $this->decryptCookie($key, $cookie));
} catch (DecryptException $e) {
$request->cookies->set($key, null);
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#262 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
public function thenReturn()
{
return $this->then(function ($passable) {
return $passable;
});
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
* Sort the given middleware by priority.
*
Arguments
Closure($request) {#236 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
return $route;
}
/**
* Return the response for the given route.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Routing\Route $route
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
protected function runRoute(Request $request, Route $route)
{
$request->setRouteResolver(function () use ($route) {
return $route;
});
$this->events->dispatch(new Events\RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
Arguments
Route {#183}
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
{
$this->current = $route = $this->routes->match($request);
$this->container->instance(Route::class, $route);
return $route;
}
/**
* Return the response for the given route.
*
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Route {#183}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Router.php
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function respondWithRoute($name)
{
$route = tap($this->routes->getByName($name))->bind($this->currentRequest);
return $this->runRoute($this->currentRequest, $route);
}
/**
* Dispatch the request to the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
public function terminate($request, $response)
{
$this->terminateMiddleware($request, $response);
$this->app->terminate();
}
/**
* Call the terminate method on any terminable middleware.
*
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/fideloper/proxy/src/TrustProxies.php
{
$this->config = $config;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
$request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
$this->setTrustedProxyIpAddresses($request);
return $next($request);
}
/**
* Sets the trusted proxies on the request to the value of trustedproxy.proxies
*
* @param \Illuminate\Http\Request $request
*/
protected function setTrustedProxyIpAddresses(Request $request)
{
$trustedIps = $this->proxies ?: $this->config->get('trustedproxy.proxies');
// Trust any IP address that calls us
// `**` for backwards compatibility, but is deprecated
if ($trustedIps === '*' || $trustedIps === '**') {
return $this->setTrustedProxyIpAddressesToTheCallingIp($request);
}
// Support IPs addresses separated by comma
$trustedIps = is_string($trustedIps) ? array_map('trim', explode(',', $trustedIps)) : $trustedIps;
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#160 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
namespace Illuminate\Foundation\Http\Middleware;
use Closure;
use Symfony\Component\HttpFoundation\ParameterBag;
class TransformsRequest
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} elseif ($request->request !== $request->query) {
$this->cleanParameterBag($request->request);
}
}
/**
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#207 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
namespace Illuminate\Foundation\Http\Middleware;
use Closure;
use Symfony\Component\HttpFoundation\ParameterBag;
class TransformsRequest
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} elseif ($request->request !== $request->query) {
$this->cleanParameterBag($request->request);
}
}
/**
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#208 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
class ValidatePostSize
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Http\Exceptions\PostTooLargeException
*/
public function handle($request, Closure $next)
{
$max = $this->getPostMaxSize();
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
* @return int
*/
protected function getPostMaxSize()
{
if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
return (int) $postMaxSize;
}
$metric = strtoupper(substr($postMaxSize, -1));
$postMaxSize = (int) $postMaxSize;
switch ($metric) {
case 'K':
return $postMaxSize * 1024;
case 'M':
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#209 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
$data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);
if (isset($data['allowed']) && IpUtils::checkIp($request->ip(), (array) $data['allowed'])) {
return $next($request);
}
if ($this->inExceptArray($request)) {
return $next($request);
}
throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
}
return $next($request);
}
/**
* Determine if the request has a URI that should be accessible in maintenance mode.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function inExceptArray($request)
{
foreach ($this->except as $except) {
if ($except !== '/') {
$except = trim($except, '/');
}
if ($request->fullUrlIs($except) || $request->is($except)) {
return true;
}
}
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$response = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $response instanceof Responsable
? $response->toResponse($this->getContainer()->make(Request::class))
: $response;
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
Closure($passable) {#210 …5}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
public function thenReturn()
{
return $this->then(function ($passable) {
return $passable;
});
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
Arguments
Closure($request) {#45 …4}
/home4/nibmhwor/public_html/-/engine/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
$router->middlewareGroup($key, $middleware);
}
foreach ($this->routeMiddleware as $key => $middleware) {
$router->aliasMiddleware($key, $middleware);
}
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Exception $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
} catch (Throwable $e) {
$this->reportException($e = new FatalThrowableError($e));
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new Events\RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}
/home4/nibmhwor/public_html/-/index.php
$app->bind('path.public', function() {
return __DIR__;
});
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Arguments
Request {#44 ▶
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) {#227 …5}
#routeResolver: Closure() {#229 …5}
+attributes: ParameterBag {#46}
+request: ParameterBag {#52}
+query: ParameterBag {#52}
+server: ServerBag {#48}
+files: FileBag {#49}
+cookies: ParameterBag {#47}
+headers: HeaderBag {#50}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:8 [▶
0 => "text/html"
1 => "application/xhtml+xml"
2 => "image/avif"
3 => "image/webp"
4 => "image/apng"
5 => "application/xml"
6 => "*/*"
7 => "application/signed-exchange"
]
#pathInfo: "/it/person/236034"
#requestUri: "/-/it/person/236034"
#baseUrl: "/-"
#basePath: null
#method: "GET"
#format: null
#session: Store {#274}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: "/-"
format: "html"
}