| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | protected function path(string $view): string |
||
| 32 | { |
||
| 33 | $path = resource_path('views' . DIRECTORY_SEPARATOR . str_replace('.', DIRECTORY_SEPARATOR, $view) . '.blade.php'); |
||
| 34 | |||
| 35 | $directory = dirname($path); |
||
| 36 | |||
| 37 | if (!is_dir($directory)) { |
||
| 38 | \File::makeDirectory($directory, 0755, true); |
||
| 39 | } |
||
| 40 | |||
| 41 | return $path; |
||
| 42 | } |
||
| 43 | |||
| 61 |