File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 18
18
* @method static bool hasRenderedOnce(string $id)
19
19
* @method static void markAsRenderedOnce(string $id)
20
20
* @method static void addLocation(string $location)
21
+ * @method static void prependLocation(string $location)
21
22
* @method static \Illuminate\View\Factory addNamespace(string $namespace, string|array $hints)
22
23
* @method static \Illuminate\View\Factory prependNamespace(string $namespace, string|array $hints)
23
24
* @method static \Illuminate\View\Factory replaceNamespace(string $namespace, string|array $hints)
Original file line number Diff line number Diff line change @@ -424,6 +424,17 @@ public function addLocation($location)
424
424
$ this ->finder ->addLocation ($ location );
425
425
}
426
426
427
+ /**
428
+ * Prepend a location to the array of view locations.
429
+ *
430
+ * @param string $location
431
+ * @return void
432
+ */
433
+ public function prependLocation ($ location )
434
+ {
435
+ $ this ->finder ->prependLocation ($ location );
436
+ }
437
+
427
438
/**
428
439
* Add a new namespace to the loader.
429
440
*
You can’t perform that action at this time.
0 commit comments