Please note any missing pieces, wrong directions, or anything else in the comments. Thanks!
This is trying to catch all framework-related changes that are missing from my post RE upgrading Laravel 4 to 5.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Leaflet</title> | |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.css" /> | |
<script src="http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.js"></script> | |
<script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script> | |
<script src="http://matchingnotes.com/javascripts/leaflet-google.js"></script> | |
</head> | |
<body> |
Please note any missing pieces, wrong directions, or anything else in the comments. Thanks!
This is trying to catch all framework-related changes that are missing from my post RE upgrading Laravel 4 to 5.
/* | |
|-------------------------------------------------------------------------- | |
| Multi Sites Laravel Routing | |
|-------------------------------------------------------------------------- | |
| | |
| You may setup single laravel application to serve multiple applications | |
| hosting on different domains and/or subdomain using the following | |
| routing feature provided by laravel easily. Just define routes | |
| as given below. |
<?php | |
namespace PDFMerge; | |
use Symfony\Component\Process\Process; | |
use Symfony\Component\Process\Exception\ProcessFailedException; | |
// new empty array to fill with appendix documents. | |
$doc_array = []; | |
// add to the document array for each appendix item. | |
foreach($documents as $doc) { |