laravel-5.3

    1熱度

    3回答

    如何在Laravel中使用@foreach(blade)時排除項目? 例如: 用戶有一些文章,在文章詳細頁面: <p>Article detail:</p> <h2>{{$article->title}}</h2> <p>{{$article->content}}</p> <h4>The other articles of this user:</h4> @foreach ($artic

    3熱度

    1回答

    我剛剛將我的Laravel項目從5.2升級到5.3,使用Shift。手動合併文件後,Shift不能合併我打開了一個選項卡,並去我的項目。看來,路由模型綁定無法正常工作。 我使用了一個sluggable包。 Route::get('team/{team}', function (App\Models\Team $team) { dd($team); }); 但是當我使用上面的代碼與塊

    0熱度

    1回答

    嘗試使用yajra/laravel-oci8連接到Oracle數據庫,下面是配置。請注意,我還安裝了對應於Windows Server位版本的即時客戶端11g。我已經確保在php.ini中啓用了11g ext。 了4天就現在這個樣子,沒有任何人有任何想法,這是怎麼回事? 我甚至沒有收到錯誤信息,只是附加了一個堆棧轉儲。 'oracle' => [ 'driver' => 'oracle

    2熱度

    1回答

    以及即時通訊測試中laravel 5.3實現了這個新的通知的東西,它的偉大, 我有發送郵件到身份驗證的用戶(當他碰到一個特定的路線),這是該通知類默認代碼。 通知 namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illumina

    7熱度

    2回答

    我在Laravel 5.3使用Auth腳手架,我改變了auth的路線。因此,我使用/signin和/signup而不是/login和/register。 在Laravel 5.2我們在auth中間件有這個默認情況下, public function handle($request, Closure $next, $guard = null) { if (Auth::guard($gua

    5熱度

    1回答

    我想將Laravel更新到最新版本5.3。 我檢查official guide,但我不明白如何真正通過作曲家升級代碼。 當我嘗試更新composer.json文件指向laravel/framework 5.3。*。 我得到: Your requirements could not be resolved to an installable set of packages. Proble

    24熱度

    3回答

    我更新到5.3 laravel後播種的時候,我得到這個消息: [2016-08-23 23:12:39] local.ERROR: BadMethodCallException: Call to undefined method Illuminate\Database\Query\Builder::lists() in /home/vagrant/Code/vendor/laravel/frame

    1熱度

    1回答

    5.3查詢生成器錯誤 新的使用DB時安裝laravel錯誤:選擇 回溯是 FatalErrorException in SqlServerConnection.php line 13: Declaration of Illuminate\Database\SqlServerConnection::transaction(Closure $callback) must be compatible

    1熱度

    1回答

    我剛剛從laravel 5.2升級到5.3 laravel目前 我與Mailables煩惱。 我總是收到ReflectionExceptionClass not found。奇怪的是,當我嘗試直接發送郵件(沒有排隊)時,沒有發生問題。 我查看了我的數據庫中的作業表,因爲我使用的是數據庫排隊驅動程序。但這似乎並不是問題。 以下是完整的堆棧跟蹤: in Container.php line 734

    -1熱度

    3回答

    在LoginController.php 我想將用戶重定向到主頁,但它在驗證用戶後總是顯示空白頁面。 public function authenticater($data,$request) { $email=$data['email']; $check=User::where('email', '=',$email)->first(); //if