I would probably write this out to a config file on save assuming you have sufficient privileges
I wouldn't store it in the database - I would store it as a config file - I assume you need to access the data on every page load so a file read might be quicker
You could write it to an ini type file and parse the data out, or even better write it as a Laravel config file to the config directory. You could then access the values like \Config::get('myapp.startDate');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community