Overview for 'appstract'
Written by Appstract - Medium
/ Original link
on Jun. 28, 2017
Use Bootstrap components to create a pagination for your custom collectionsLast time I wrote about how Laravel Bootstrap Components can clean up your view files. Today I want to show how you can use this package to create a pagination with rendered Bootstrap buttons, for your custom collections.Pre…
Written by Appstract - Medium
/ Original link
on Jun. 19, 2017
Easily use Bootstrap components as Laravel componentsBootstrap is a very popular front-end framework. A lot of developers use it to quickly create interfaces for their Laravel App, so do we at Appstract. While it makes a lot of tasks easier, it also requires a lot of HTML code to use the default co…
Written by Appstract - Medium
/ Original link
on Jun. 13, 2017
Show which templates and partials are loaded into your viewsPath hints?Those of you who have worked with Magento will probably know about path hints, and how helpful they can be.When working on apps with lots of views and partials it can become difficult and time consuming to find out which partial…
Written by Appstract - Medium
/ Original link
on Jun. 2, 2017
Redirect to different pages in multiple time periodsNowadays a lot of companies are increasing their marketing efforts to get the best results as possible. Of course, the way they do that varies, but we often see that multiple channels and multiple domain names are involved. But how do you handle…
Written by Appstract - Medium
/ Original link
on Mar. 14, 2017
How to easily handle global options for multiple purposesHouston, we got a ... situationSometimes you need to store some key value pairs in your project, but where? In my situation I had multiple options to store. Some of the options should change later in the process so it should be possible to up…
Written by Appstract - Medium
/ Original link
on Feb. 7, 2017
Easy guide to enable and optimize OPcache for a faster applicationWhat is OPcache?Every time you execute a PHP script, the script needs to be compiled to byte code. OPcache leverages a cache for this bytecode, so the next time the same script is requested, it doesn’t have to recompile it. This can…