for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenG\LaravelPages\Facades;
use Illuminate\Support\Facades\Facade;
/**
* This registers the facade for the package.
*
* Place the line below in the aliases array inside app/config/app.php
* <code>'LPages' => 'JeroenG\LaravelPages\Facades\LaravelPages',</code>
* 'LPages' is then the facade you can use in your code. If you want it to be something else, you can change this here.
* @author JeroenG
**/
class LaravelPages extends Facade
{
* Get the registered name of the component.
* @return string
*/
protected static function getFacadeAccessor()
return 'laravelpages';
}