I might be blind but...
I've noticed that I must be logged in to view /canvas/posts - however I'd like to publish my blog without signup - is this possible?
Canvas is the backend and would intentionally be hidden behind authentication. As far as viewing the frontend of the blog, that's a little more defined in this section of the readme.
Ah I was confused in thinking that studio was where the blogs were
created.. :) Will give that a go today
On Sat, 16 May 2020 at 22:21, Todd Austin notifications@github.com wrote:
Canvas is the backend and would intentionally be hidden behind
authentication. As far as viewing the frontend of the blog, that's a little
more defined in this section of the readme
https://github.com/cnvs/canvas#frontend.—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/cnvs/canvas/issues/749#issuecomment-629653498, or
unsubscribe
https://github.com/notifications/unsubscribe-auth/AAFC2FGNOIJUV6XNKBUR2ULRR2OOVANCNFSM4NC2GWGA
.
--
Bret Watson
Director
IT Interim Management Pty Ltd T/A TICM
Mob: +61 (0)41 33 03 840
Email:[email protected]
"The contents of this e-mail transmission are intended solely for the named
recipient(s), may be confidential, and may be privileged or otherwise
protected from disclosure in the public interest. The use, reproduction,
disclosure or distribution of the contents of this e-mail transmission by
any person other than the named recipient(s) is prohibited. If you are not
a named recipient please notify the sender immediately."
All good! :)
@austintoddj sections in readme seem removed
@thewebartisan7 Which section do you need clarification about? The readme has changed, yes, but that's just due to the fact that the app has evolved.
Yes I remember that time ago there was some basic docs about frontend, but now seem missing completely. I remember there was some controllers example. Basically I need to create all controllers, views and routes by using only canvas models?
This link point only to compile assets https://github.com/cnvs/canvas#frontend
@thewebartisan7 So, on the latest version of Canvas when you run the canvas:ui command, a controller stub will be generated for you and dropped in your app/Http/Controllers directory. Take a look at that controller, or check out the stub itself here: https://github.com/austintoddj/canvas/blob/master/resources/stubs/controllers/CanvasUiController.stub
The routes/views/controller are all generated through that command, so they'll live directly inside your app.
If you've used the Laravel authentication commands from the previous versions of Laravel, make:auth, this is the same idea.
Perfect that was exactly what I was looking for. Thank You
the route to frontend is localhost/canvas-ui/{example}, but i tried to remove the "canvas-ui" to be like localhost/{example} without success.
In routes i tried to remove Route::prefix('canvas-ui') .
What i have to do?
Thanks
@tozeka I think #878 could give a bit more context to your issue.