PHP code example of schnoop / laravel-remote-template
1. Go to this page and download the library: Download schnoop/laravel-remote-template library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
schnoop / laravel-remote-template example snippets
$this->app->make('remoteview.finder')->setModifyTemplateUrlCallback(function ($url) {
$glue = '?';
if (strpos($url, $glue) !== false) {
$glue = '&';
}
if (Auth::check() === true) {
$url .= $glue . 'login=true';
}
// ..... following by more role checks e.g.
return $url;
});
$this->app->make('remoteview.finder')->pushResponseHandler(301, function (Response $result, array $config, RemoteTemplateFinder $service) {
// Do some stuff, and return the HTML.
});