File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070 <ol class =" breadcrumb" >
7171 <li ><a href =" /basicinformation" ><i class =" fa fa-dashboard" ></i > Home</a ></li >
7272 <li class =" active" ><a href =" {{ $page_url or ' #' } }" >{{ $page_title } } </a ></li >
73- {!! $archer or ' ' ! !}
73+ {!! $archer ?? ' ' ! !}
7474 </ol >
7575 </section >
7676
Original file line number Diff line number Diff line change 77abstract class TestCase extends BaseTestCase
88{
99 use CreatesApplication;
10+
11+ protected function setUp (): void
12+ {
13+ $ compiledPath = dirname (__DIR__ ) . '/storage/framework/testing-views ' ;
14+ if (!is_dir ($ compiledPath )) {
15+ mkdir ($ compiledPath , 0777 , true );
16+ }
17+
18+ // Ensure Laravel picks up the custom compiled path before the application boots.
19+ putenv ('VIEW_COMPILED_PATH= ' . $ compiledPath );
20+ $ _ENV ['VIEW_COMPILED_PATH ' ] = $ compiledPath ;
21+ $ _SERVER ['VIEW_COMPILED_PATH ' ] = $ compiledPath ;
22+
23+ parent ::setUp ();
24+
25+ config (['view.compiled ' => $ compiledPath ]);
26+ }
1027}
You can’t perform that action at this time.
0 commit comments