- 2024/11/21
- Category :
[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ステップアップしていくブログです。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
Log::useFiles(storage_path().'/logs/laravel.log');
Log::useDailyFiles(storage_path().'/logs/laravel.log');
"require": { … "intervention/image": "2.*" },
providers = array( … 'Intervention\Image\ImageServiceProvider', ), aliases = array( … 'Image' => 'Intervention\Image\Facades\Image', ),
$img = Image::make('foo.jpg'); $img->resize(320, 240)->save('bar.jpg');のように書けます。
$img = Image::make('foo.jpg'); $canvas = Image::canvas(600, 450, '#fff'); $canvas->insert($img, 'center')->save($path);
$img->resize(null, 200, function ($constraint) { $constraint->aspectRatio(); });
$img = Image::make('foo.jpg')->insert('watermark.png');
"phpoffice/phpexcel": "1.8.*"
$excel = new PHPExcel();
$ php artisan migrate:make create_hoge_table --create=hoge
$ php artisan migrate
$ php artisan db:seed --class=HogeTableSeeder
$ php artisan migrate:refresh --seed
// 普通にURLのルート以下を指定 // http://www.hoge.com/login にリダイレクト Redirect::to('login'); // 識別名を付ける Route::get('top', array('as' => 'home', 'uses' => 'TopController@index')); // 識別名で指定して、 http://www.hoge.com/top にリダイレクト Redirect::route('home'); // コントローラとアクションを指定してリダイレクト Redirect::action('TopController@index'); // バリデーションエラーなどで入力も一緒にリダイレクト Redirect::to('edit')->withInput(); // バリデーションエラーなどでエラーメッセージも一緒にリダイレクト Redirect::to('edit')->withInput()->withErrors($validator);
$errors = new Illuminate\Support\MessageBag(); $errors->add('number', '整数で入力してください。'); Redirect::to('edit')->withInput()->withErrors($errors);
@if ($errors->has('number')) {{{$errors->first('number')}}} @endif