🧨 View [public.templates.editorial_submit] not found. (View: /home1/journalc/public_html/resources/views/public/page.blade.php)
/home1/journalc/public_html/
InvalidArgumentException
View [public.templates.editorial_submit] not found. (View: /home1/journalc/public_html/resources/views/public/page.blade.php)

public.templates.editorial_submit was not found.

Are you sure the view exists and is a .blade.php file?

    • 59
      vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php
      Illuminate\View\FileViewFinder
      :137
    • 58
      Illuminate\View\FileViewFinder
      :79
    • 56
      resources/views/public/page.blade.php
      :73
    • 46
      app/Http/Controllers/Controller.php
      App\Http\Controllers\Controller
      :35
    • 45
      App\Http\Controllers\HomeController
      :57
    • 1
      index.php
      :55
Illuminate\View\FileViewFinder::findInPaths
vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

* @param array $paths

* @return string

*

* @throws \InvalidArgumentException

*/

protected function findInPaths($name, $paths)

{

foreach ((array) $paths as $path) {

foreach ($this->getPossibleViewFiles($name) as $file) {

if ($this->files->exists($viewPath = $path.'/'.$file)) {

return $viewPath;

}

}

}

 

throw new InvalidArgumentException("View [{$name}] not found.");

}

 

/**

* Get an array of possible view files.

*

* @param string $name

* @return array

*/

protected function getPossibleViewFiles($name)

{

return array_map(function ($extension) use ($name) {

return str_replace('.', '/', $name).'.'.$extension;

}, $this->extensions);

}