- Laravel Bootstrap https://github.com/davzie/laravel-bootstrap
- TypiCMS https://github.com/sdebacker/TypiCMS
- Bootstrap starter site https://github.com/andrewelkins/Laravel-4-Bootstrap-Starter-Site
- Pongo CMS v1 (uses Laravel 3) http://pongocms.com
- Wardrobe CMS (blogging) https://github.com/wardrobecms/wardrobe
- CodeSleeve https://github.com/CodeSleeve/platform
<?php | |
use Illuminate\Console\Command; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Input\InputArgument; | |
class CleanDirs extends Command { | |
protected $name = 'cleandirs'; |
Resolution Ratio | |
2560 x 1440 1.777 | |
1920 x 1440 1.333 | |
1920 x 1200 1.6 | |
1920 x 1080 1.777 | |
1680 x 1200 1.4 | |
1680 x 1050 1.6 | |
1600 x 1200 1.333 | |
1440 x 900 1.6 | |
1400 x 1050 1.333 |
Did I hear you wanted AJAX charts instead of hard coded? You got it.
Follow this guide to integrate bar chart reports into your Laravel application with AJAX. Reports like the following come with this guide:
- Total number of Orders by day
- Total number of Users subscribed by day
- etc
The library used for the charts is: http://www.oesmith.co.uk/morris.js/
Follow this guide to integrate bar chart reports into your Laravel application. Reports like the following come with this guide:
- Total number of Orders by day
- Total number of Users subscribed by day
- etc
The library used for the charts is: http://www.oesmith.co.uk/morris.js/
First put this into your page that will have the reports (in the Blade view) to include Morris library:
@foreach(array_chunk($posts, 3) as $postSet) | |
<div class="row"> <!-- this div will surround every three posts --> | |
@foreach($postSet as $post) | |
<h3>{{ $post['title'] }}</h3> | |
@endforeach | |
</div> | |
@endforeach |
ini_set("memory_limit","200M"); | |
if( !empty($_SERVER['HTTP_ORIGIN']) ){ | |
// Enable CORS | |
header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']); | |
header('Access-Control-Allow-Methods: POST, GET, OPTIONS'); | |
header('Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Range, Content-Disposition, Content-Type'); | |
} | |
if( $_SERVER['REQUEST_METHOD'] == 'OPTIONS' ){ |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>AJAX</title> | |
</head> | |
<body> |
- At Laravel meetup in London, http://www.meetup.com/London-Laravel/events/178537352
###"Introduction to Laravel PHP framework" :###
- At LA PHP Meetup (more than 70 people attended) : http://www.meetup.com/laphpdev/events/107966082/
- At OC PHP Meetup : http://www.meetup.com/oc-php/events/103355712/
- LA Code Camp : http://www.socalcodecamp.com/sessions.aspx
- Seattle PHP Meetup (30 people attended) : http://www.meetup.com/seaphp/events/155862862/