並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 14 件 / 14件

新着順 人気順

"PHP Framework"の検索結果1 - 14 件 / 14件

  • GitHub - realodix/urlhub: ✂️ URL shortener web application based on the Laravel PHP Framework.

    Reliable link shortner: Does the job really well and it is very consistent. UrlHub is definitely one of the most reliable self-hosted URL shortener out there. Would recommend easily. Custom URLs (ex: example.com/laravel): Allows users to create more descriptive short URLs rather than a randomly generated mix of letters and numbers. QR code generator for each short link: The fastest way to access t

      GitHub - realodix/urlhub: ✂️ URL shortener web application based on the Laravel PHP Framework.
    • Requestに値を入れてテストする - ふたりはララベル (Laravel PHP Framework)

      コントローラーをテストする時にRequestの変数に値を入れる。 $request = new Request; $request->merge([ 'name' => 'testname', ]); $controller = new \Lb\Http\Controllers\TitleController($request); $controller->update($request, 100); $title = Title::find(100); $this->assertEquals($title->name, 'testname');

        Requestに値を入れてテストする - ふたりはララベル (Laravel PHP Framework)
      • Laravel - The PHP Framework For Web Artisans

        Join us in Dallas, TX! Tickets are now available for Laracon US.

          Laravel - The PHP Framework For Web Artisans
        • Laravel - The PHP Framework For Web Artisans

          Join us in Dallas, TX! Tickets are now available for Laracon US.

            Laravel - The PHP Framework For Web Artisans
          • Laravel Bootcamp - Learn the PHP Framework for Web Artisans

            01. Introduction Welcome to the Laravel Bootcamp! In this guide we will walk through building a modern Laravel application from scratch. To explore the framework, we'll build a microblogging platform called Chirper. #Choose your own adventure: Blade, Livewire, or JavaScript Laravel is incredibly flexible, allowing you to build your front-end with a wide variety of technologies to suit your needs.

              Laravel Bootcamp - Learn the PHP Framework for Web Artisans
            • GitHub - pmjones/php-history: A list of the years-of-introductions of notable (to me) PHP framework and library projects.

              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                GitHub - pmjones/php-history: A list of the years-of-introductions of notable (to me) PHP framework and library projects.
              • Laravel - The PHP Framework For Web Artisans

                Join us in Dallas, TX! Tickets are now available for Laracon US.

                  Laravel - The PHP Framework For Web Artisans
                • Authentication - Laravel - The PHP Framework For Web Artisans

                  Join us in Dallas, TX! Tickets are now available for Laracon US.

                    Authentication - Laravel - The PHP Framework For Web Artisans
                  • Laravel - The PHP Framework For Web Artisans

                    Join us in Dallas, TX! Tickets are now available for Laracon US.

                      Laravel - The PHP Framework For Web Artisans
                    • Laravel - The PHP Framework For Web Artisans https://laravel.com - Why not working for me?

                      Laravel4 not working? See↓↓↓ Laravel - The PHP Framework For Web Artisans https://laravel.com ・laravel4 not working On Twitter ・laravel4 not working On Stack Over Flow ・laravel4 not working On GitHub

                        Laravel - The PHP Framework For Web Artisans https://laravel.com - Why not working for me?
                      • HumhubをSafariで使ったときの漢字確定のバグを解消する - ふたりはララベル (Laravel PHP Framework)

                        HumhubをSafariで使うと、日本語入力でEnterキーを押すと必ず改行になる。これを解消するためにkeyCode = 229のチェックを追加した。 function inOrNearComposition(view, event) { if (view.composing) { return true } // See https://www.stum.de/2016/06/24/handling-ime-events-in-javascript/. // On Japanese input method editors (IMEs), the Enter key is used to confirm character // selection. On Safari, when Enter is pressed, compositionend and keydown events

                          HumhubをSafariで使ったときの漢字確定のバグを解消する - ふたりはララベル (Laravel PHP Framework)
                        • blade上で変数の存在確認 - ふたりはララベル (Laravel PHP Framework)

                          blade上で変数がnullだと「Undefined variable: 変数名」というエラーになる。これを回避するためにはissetで変数の中身を確認する。 @if (isset( $message )) <p>$message</p> @else <p>Hello</p> @endif上記の場合、$messageが空だとHelloが表示される。

                            blade上で変数の存在確認 - ふたりはララベル (Laravel PHP Framework)
                          • 長くなったLaravelのModelを分割 - ふたりはララベル (Laravel PHP Framework)

                            長くなったLaravelのModelを分割する方法の一つとして、私は上位モデルを使うときがある。 Titleモデルのうち、Updateに関する機能を独立させるときはこんな感じ。テーブル名を指定するのがポイント。 class TitleUpdate extends Title { protected $table = 'titles'; public function myvalidator($request) { return \Validator::make($request->toArray(), [ 'releasedate' => 'date_format:Y/m/d', ]); } }

                              長くなったLaravelのModelを分割 - ふたりはララベル (Laravel PHP Framework)
                            • Eloquentで上位10件を取得する - ふたりはララベル (Laravel PHP Framework)

                              Eloquentで上位10件を取得する、つまり降順で並び替えた10件を取得するときはorderByとtakeを使う。 $comments = Comment::orderBy('id', 'DESC')->take(10)->get();

                                Eloquentで上位10件を取得する - ふたりはララベル (Laravel PHP Framework)
                              1