#Make blade templates editable by non-devs

1 messages · Page 1 of 1 (latest)

muted root
#

Problem: marketing wants to be able to edit content and layout of several parts of my Laravel app which are in blade templates. E.g. in-app landing pages, splash screens, content of modal popups throughout the app etc.

I'm looking for a solution I can integrate into app so they can make any changes on their own in some sort of a SaaS/dashboard which will be deployed on prod directly or committed to git repo as PRs. Something like Contentful but with markup editing capabilities of Webflow.

Will appreciate any pointers to any tools out there or ideas how to approach this if I'd be building it myself. thx

rose haven
#

I'd probably deploy them a dedicated dev instance of the application with some simple web IDE bundled along. Then add some simple PR automation.

#

You should be able to limit the scope of IDE to the /resources/*.blade.php

muted root
#

Thanks @rose haven, that’s definitely an option. Still looking for out of the box solution or SaaS for this use case.