[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
{
"in_process_packages":
[
],
"installed_packages":
[
"AdvancedNewFile",
"ApacheConf.tmLanguage",
"AutoFileName",
"Bootstrap 3 Snippets",
"BracketHighlighter",
"Browser Refresh",
"Codecs33",
"ColorPicker",
"ConvertToUTF8",
"CSS Snippets",
"DocBlockr",
"Emmet",
"HTML5",
"jQuery",
"jQuery Mobile Snippets",
"jQuery Snippets pack",
"Laravel 4 Snippets",
"Laravel Blade Highlighter",
"LiveReload",
"Package Control",
"SCSS",
"SublimeLinter",
"Tag",
"Theme - Cobalt2"
]
}
[
{ "keys": ["super+b"], "command": "toggle_side_bar" },
{ "keys": ["super+e"], "command": "goto_definition" },
{ "keys": ["super+r"], "command": "goto_symbol_in_project" },
{ "keys": ["ctrl+b"], "command": "jump_back" },
{ "keys": ["ctrl+t"], "command": "jump_forward" },
{ "keys": ["super+shift+c"], "command": "color_pick" },
{
"keys": ["super+shift+r"], "command": "browser_refresh", "args": {
"auto_save": true,
"delay": 0.0,
"activate": true,
"browsers" : ["chrome"]
}
},
{ "keys": ["super+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["super+up"], "command": "swap_line_up" },
{ "keys": ["super+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+f"], "command": "expand_selection", "args": {"to": "scope"} },
{ "keys": ["alt+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}
]
{
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme",
// "color_scheme": "Packages/Theme - Cobalt2/cobalt2.tmTheme",
// "theme": "Cobalt2.sublime-theme",
"disable_formatted_linebreak": true,
"disable_tab_abbreviations": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"open_files_in_new_window": false,
"word_wrap": true
}
{
"snippets": {
"variables": {
"lang": "ja",
"locale": "ja-JP",
"charset": "UTF-8",
"indentation": "\t",
"newline": "\n"
},
"html": {
"filters": "html,c"
}
},
"preferences": {
"filter.commentAfter": "<!-- /<%= attr(\"id\", \"#\") %><%= attr(\"class\", \".\") %> -->"
}
}
<div class="row"></div><!-- /.row -->
となります。Route::controller('/top/second', 'second/SecondController');
Route::controller('/top/second', 'second.SecondController');
Route::controller('/top', 'TopController');
Route::controller('/top/second', 'SecondController');
Route::controller('/top/third', 'ThirdController');
Route::group(['prefix' => 'top'], function() {
Route::controller('/', 'TopController');
Route::controller('/second', 'SecondController');
Route::controller('/third', 'ThirdController');
});
Route::group(['prefix' => 'top'], function() {
Route::controller('/second', 'SecondController');
Route::controller('/third', 'ThirdController');
Route::controller('/', 'TopController');
});
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"maatwebsite/excel": "1.*",
"tecnick.com/tcpdf": "~6.0.0"
$ cd vendor/tecnick.com/tcpdf/tools
$ php ./tcpdf_addfont.php -b -t TrueTypeUnicode -f 32 -i ./ipag.ttf
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
$data = [
'sampleModelObject' => $sampleModelObject
];
Excel::create('sample', function($excel) use($data) {
$excel->sheet('sample', function($sheet) use($data) {
$sheet->setFontFamily('ipag');
// PDFを横にしたい場合
$sheet->setOrientation('landscape');
$sheet->loadView('test.pdf_view', $data);
});
})->export('pdf');
})->store('xls')->export('pdf');
$data = [
'sampleModelObject' => $sampleModelObject
];
$pdf = PDF::loadView('test.pdf_view', $data);
return $pdf->download('sample.pdf');
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
'pdf' => array(
/*
|--------------------------------------------------------------------------
| PDF Drivers
|--------------------------------------------------------------------------
| Supported: DomPDF, tcPDF, mPDF
*/
'driver' => 'DomPDF',
Most of the HTML tags are supported.
Most of the general styles are supported.