- Saved searches
- Use saved searches to filter your results more quickly
- Cannot get page to display #15
- Cannot get page to display #15
- Comments
- Saved searches
- Use saved searches to filter your results more quickly
- Get the following error ErrorException in FileViewFinder.php line 137: when implementing one of the examples below #3
- Get the following error ErrorException in FileViewFinder.php line 137: when implementing one of the examples below #3
- Comments
- Detailed description
- Context
- Possible implementation
- Your environment
- Saved searches
- Use saved searches to filter your results more quickly
- Get the following error ErrorException in FileViewFinder.php line 137: when implementing one of the examples below #3
- Get the following error ErrorException in FileViewFinder.php line 137: when implementing one of the examples below #3
- Comments
- Detailed description
- Context
- Possible implementation
- Your environment
- Laravel InvalidArgumentException in FileViewFinder.php line 137:
- Answer
- Solution:
- Share solution ↓
- Additional Information:
- Didn’t find the answer?
- Similar questions
- Write quick answer
- About the technologies asked in this question
- PHP
- Laravel
- Welcome to programmierfrage.com
- Get answers to specific questions
- Help Others Solve Their Issues
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot get page to display #15
Cannot get page to display #15
Comments
Also ran the command to publish views, etc:
$ php artisan vendor:publish --provider="Backpack\PageManager\PageManagerServiceProvider" Copied Directory [\vendor\backpack\pagemanager\src\resources\views] To [\resources\views] Copied Directory [\vendor\backpack\pagemanager\src\database\migrations] To [\database\migrations] Publishing complete for tag []!
When I go to open the page I get:
InvalidArgumentException in FileViewFinder.php line 137: View [pages.services] not found. in FileViewFinder.php line 137 at FileViewFinder->findInPaths('pages.services', array('C:\xampp\htdocs\backpack\resources\views')) in FileViewFinder.php line 79 at FileViewFinder->find('pages.services') in Factory.php line 174 at Factory->make('pages.services', array('title' => 'test', 'page' => object(Page)), array()) in helpers.php line 855 at view('pages.services', array('title' => 'test', 'page' => object(Page))) in PageController.php line 21 at PageController->index('test') at call_user_func_array(array(object(PageController), 'index'), array('page' => 'test')) in Controller.php line 55 at Controller->callAction('index', array('page' => 'test')) in ControllerDispatcher.php line 44 at ControllerDispatcher->dispatch(object(Route), object(PageController), 'index') in Route.php line 189 at Route->runController() in Route.php line 144 at Route->run(object(Request)) in Router.php line 642 at Router->Illuminate\Routing\(object(Request)) in Pipeline.php line 53 at Pipeline->Illuminate\Routing\(object(Request)) in VerifyCsrfToken.php line 65 at VerifyCsrfToken->handle(object(Request), object(Closure)) in Pipeline.php line 137 at Pipeline->Illuminate\Pipeline\(object(Request)) in Pipeline.php line 33 at Pipeline->Illuminate\Routing\(object(Request)) in ShareErrorsFromSession.php line 49 at ShareErrorsFromSession->handle(object(Request), object(Closure)) in Pipeline.php line 137 at Pipeline->Illuminate\Pipeline\(object(Request)) in Pipeline.php line 33 at Pipeline->Illuminate\Routing\(object(Request)) in StartSession.php line 64 at StartSession->handle(object(Request), object(Closure)) in Pipeline.php line 137 at Pipeline->Illuminate\Pipeline\(object(Request)) in Pipeline.php line 33 at Pipeline->Illuminate\Routing\(object(Request)) in AddQueuedCookiesToResponse.php line 37 at AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) in Pipeline.php line 137 at Pipeline->Illuminate\Pipeline\(object(Request)) in Pipeline.php line 33 at Pipeline->Illuminate\Routing\(object(Request)) in EncryptCookies.php line 59 at EncryptCookies->handle(object(Request), object(Closure)) in Pipeline.php line 137 at Pipeline->Illuminate\Pipeline\(object(Request)) in Pipeline.php line 33 at Pipeline->Illuminate\Routing\(object(Request)) in Pipeline.php line 104 at Pipeline->then(object(Closure)) in Router.php line 644 at Router->runRouteWithinStack(object(Route), object(Request)) in Router.php line 618 at Router->dispatchToRoute(object(Request)) in Router.php line 596 at Router->dispatch(object(Request)) in Kernel.php line 267 at Kernel->Illuminate\Foundation\Http\(object(Request)) in Pipeline.php line 53 at Pipeline->Illuminate\Routing\(object(Request)) in CheckForMaintenanceMode.php line 46 at CheckForMaintenanceMode->handle(object(Request), object(Closure)) in Pipeline.php line 137 at Pipeline->Illuminate\Pipeline\(object(Request)) in Pipeline.php line 33 at Pipeline->Illuminate\Routing\(object(Request)) in Pipeline.php line 104 at Pipeline->then(object(Closure)) in Kernel.php line 149 at Kernel->sendRequestThroughRouter(object(Request)) in Kernel.php line 116 at Kernel->handle(object(Request)) in index.php line 53
Seems like a problem with the view?
The text was updated successfully, but these errors were encountered:
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Get the following error ErrorException in FileViewFinder.php line 137: when implementing one of the examples below #3
Get the following error ErrorException in FileViewFinder.php line 137: when implementing one of the examples below #3
Comments
So I copied the candlestick example into my laravel project
Detailed description
this function is in my controller
public function show($id)
$stock = Stock::find($id); if(!$stock) < Session::flash('message', 'The stock you requested could not be found.'); return redirect('/'); >$rows = [ ['Mon', 20, 28, 38, 45], ['Tue', 31, 38, 55, 66], ['Wed', 50, 55, 77, 80], ['Thu', 77, 77, 66, 50], ['Fri', 68, 66, 22, 15] ]; $options = [ 'legend' => 'none' ]; $cols =[]; return view('stocks.show')->with([ 'stock' => $stock, 'rows' => $rows, 'options' => $options, 'cols' => $cols, ]); >
ticker >>
Company Website: website >>
Added on: created_at >>
Last updated: updated_at >>
setOptions($options) ->setCols($cols) ->setRows($rows) ->render() !!>>