はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    WWDC25

『Matt Stauffer』

  • 人気
  • 新着
  • すべて
  • Introducing Laravel Dusk (new in Laravel 5.4)

    3 users

    mattstauffer.com

    If you follow anyone in the Laravel world on Twitter, or if you listen to the Laravel Podcast, you know by now that Laravel Dusk is the new face of application testing in the Laravel world. The background of application testing in Laravel First, a quick refresher: while everyone talking about testing uses words a little bit differently, it's pretty well agreed that Unit tests are responsible for t

    • 学び
    • 2017/02/04 16:20
    • Laravel
    • test
    • Using Vue in Laravel 5.3, with the Vue bootstrap and sample component

      4 users

      mattstauffer.com

      In Laravel 5.3, it's easier than ever to write and use Vue components out of the box. This means 5.3 has a somewhat more opinionated default frontend stack than previous versions do. But never fear—it's easy to strip out the default components. Let's explore 5.3's JavaScript stack together. Spin up a sample app using the Laravel installer (or, if you're like me, use Lambo) and open up the site in

      • テクノロジー
      • 2016/12/23 21:53
      • Vue.js
      • PHP
      • javascript
      • New JSON-column where() and update() syntax in Laravel 5.3

        3 users

        mattstauffer.com

        While Laravel has had the ability to cast your data to and from JSON since version 5.0, it was previously just a convenience—your data was still just stored in a TEXT field. But MySQL 5.7 introduced an actual JSON column type. Laravel 5.3 introduces a simple syntax for lookups and updates based on the value of specific keys in your JSON columns. Let's assume we have a table with a JSON column: ...

        • テクノロジー
        • 2016/07/10 18:00
        • Middleware groups in Laravel 5.2

          3 users

          mattstauffer.com

          When you are creating a site of any significant size in Laravel, your routes file will often get pretty large. One of the first things I do in a new site is group my routes by logically distinct sections like "admin", "auth", "public". Usually each of these groups get their own set of middleware—admin, for example, gets auth. Maybe the API group gets a different auth middleware, and it might get a

          • テクノロジー
          • 2015/12/23 19:01
          • Laravel
          • Implicit route model binding in Laravel 5.2

            5 users

            mattstauffer.com

            If you've never used it, Laravel's route model binding has been around for a while, but Laravel 5.2 is about to make it even easier. The basics of route model binding Let's assume that a common pattern for binding a URL route is something like this: Route::get('shoes/{id}', function ($id) { $shoe = Shoe::findOrFail($id); // Do stuff }); This is something I do a lot. Wouldn't it be nice if you coul

            • 世の中
            • 2015/12/18 22:22
            • Laravel
            • Login Throttling in Laravel 5.1

              3 users

              mattstauffer.com

              If you've ever run a SaaS (or put any web site with comments or signups on the Internet for any length of time), you've experienced the annoyance of spam signups and comments. But, whether or not you know it, any login forms are likely to get a lot of automated login attempts. Most login forms don't stop an automated attack trying email after email, password after password, and since those aren't

              • テクノロジー
              • 2015/08/02 08:38
              • Sublime Text (3) for PHP Developers

                12 users

                mattstauffer.com

                A lot of folks in the PHP community have been checking out PHPStorm lately, including myself and most of the developers I work with. We love the code intelligence we get from PHPStorm, but still miss the speed, quick boot-up, and convenience of Sublime Text. Before I blindly assume PHPStorm is the only way to go, I wanted to see: Can I bring the things a PHP-focused IDE provides PHP developers bac

                • テクノロジー
                • 2015/06/30 18:00
                • Better Integration Testing in Laravel 5.1: DatabaseMigrations, DatabaseTransactions, and WithoutMiddleware

                  5 users

                  mattstauffer.com

                  Continuing in our series about testing and integration testing in Laravel 5.1, let's take a look at some new traits that are available for your tests. Database migrations and data Two of these traits have to do with the behavior of database migrations and database state during your testing. If you have never tested anything that relies on the database, it'll help you to know that it can be hard at

                  • テクノロジー
                  • 2015/06/30 10:44
                  • Test
                  • Database
                  • php
                  • *あとで読む
                  • Introducing Lumen from Laravel

                    5 users

                    mattstauffer.com

                    Lumen is a new project from Laravel creator Taylor Otwell. It's a "micro-framework", meaning it's a smaller, faster, leaner version of a full web application framework. PHP has two other popular micro-frameworks, Slim and Silex. Lumen has the same foundation as Laravel, and many of the same components. But Lumen is built for microservices, not so much for user-facing applications (although it can

                    • テクノロジー
                    • 2015/04/15 00:01
                    • lumen
                    • Laravel
                    • php
                    • Conditionally Loading Service Providers in Laravel 5

                      3 users

                      mattstauffer.com

                      Since Laravel 5 flattened a lot of the environment-specific structures, much of the configuration that was once stored in different config directories for each environment has now moved into .env files. But one that can't just live in .env is the environment-dependent loading of service providers. On a project we're working on, we want to register our error handlers in service providers, and we wa

                      • 暮らし
                      • 2015/03/10 11:54
                      • Laravel 5.0 - Custom Error Pages

                        3 users

                        mattstauffer.com

                        When you wanted to customize your error pages—for example, showing a particular cat GIF when your users hit a 404—you’d Google it and follow these instructions by Dries Vints. In Laravel 5 things have changed a bit. TL;DR take me to the solution already Trace it through the code Now, all custom error and exception handling has moved to app/Exceptions/Handler.php. You’ll remember that that’s where

                        • テクノロジー
                        • 2015/02/02 16:18
                        • php
                        • あとで読む
                        • Upgrading from Laravel 4 to Laravel 5

                          5 users

                          mattstauffer.com

                          It's very simple to get started in a new Laravel 5 app: composer create-project laravel/laravel my-project-name-here dev-develop --prefer-dist. But what if you have a Laravel 4 app you want to upgrade? You might think the answer is to upgrade the Composer dependencies and then manually make the changes. Quite a few folks have created walkthroughs for that process, and it's possible—but there are a

                          • テクノロジー
                          • 2015/01/17 03:25
                          • Laravel
                          • PHP
                          • Laravel 5.0 - Form Requests

                            3 users

                            mattstauffer.com

                            Laravel 5.0 Laravel 5.0 is coming out in November, and there are a lot of features that have folks excited. The New Directory structure is, in my mind, a lot more in line with how most developers work; Flysystem integration will make working with files endlessly more flexible and powerful; Contracts is a great step towards making Laravel-friendly packages that aren’t Laravel-dependent; and Sociali

                            • テクノロジー
                            • 2014/09/13 18:27
                            • Matt Stauffer

                              3 users

                              mattstauffer.com

                              :where(:not(.full-bleed))]:container h-full [&>:where(:not(.full-bleed))]:max-w-6xl [&>:where(:not(.full-bleed))]:px-6 md:py-12 py-6 [&>:where(:not(.full-bleed))]:mx-auto mb-auto content w-full"> Page not found What’s worse, a hilarious 404 page can’t be found either.

                              • テクノロジー
                              • 2014/09/11 09:14
                              • php
                              • Installing a Laravel app on Heroku

                                4 users

                                mattstauffer.com

                                Heroku has had PHP support for a while, but it's been a definitively second-class citizen. Yesterday Heroku announced a huge boost in their PHP support, including out-of-the-box Composer support and an intention to become a legitimate destination for hosting modern PHP apps. So, let's take a look at the fastest and simplest way to get a stock Laravel install up and running on Heroku. Pre-requisite

                                • テクノロジー
                                • 2014/05/07 20:30

                                このページはまだ
                                ブックマークされていません

                                このページを最初にブックマークしてみませんか?

                                『Matt Stauffer』の新着エントリーを見る

                                キーボードショートカット一覧

                                j次のブックマーク

                                k前のブックマーク

                                lあとで読む

                                eコメント一覧を開く

                                oページを開く

                                はてなブックマーク

                                • 総合
                                • 一般
                                • 世の中
                                • 政治と経済
                                • 暮らし
                                • 学び
                                • テクノロジー
                                • エンタメ
                                • アニメとゲーム
                                • おもしろ
                                • アプリ・拡張機能
                                • 開発ブログ
                                • ヘルプ
                                • お問い合わせ
                                • ガイドライン
                                • 利用規約
                                • プライバシーポリシー
                                • 利用者情報の外部送信について
                                • ガイドライン
                                • 利用規約
                                • プライバシーポリシー
                                • 利用者情報の外部送信について

                                公式Twitter

                                • 公式アカウント
                                • ホットエントリー

                                はてなのサービス

                                • はてなブログ
                                • はてなブログPro
                                • 人力検索はてな
                                • はてなブログ タグ
                                • はてなニュース
                                • ソレドコ
                                • App Storeからダウンロード
                                • Google Playで手に入れよう
                                Copyright © 2005-2025 Hatena. All Rights Reserved.
                                設定を変更しましたx