最赞回答 / 慕的地5181959
刚好我也遇到了。可能是数据长度没有指定,造成超长你在migrate的代码里加入 Schema::defaultStringLength(191);如下public function up() { Schema::defaultStringLength(191); //new add Schema::create('users', function (Blueprint $table) { $table->increments('id'); ...
2018-03-13
Expected response code 250 but got code "554", with message "554 DT:SPM 163 smtp5,D9GowABnbl5sh3Ra+."
Mail::raw('hello this is ukuoffer',function( $message){
$message->from('****@163.com','AA');
$message->subject('offer');
$message->to('**bob@gmail.com');
Mail::raw('hello this is ukuoffer',function( $message){
$message->from('****@163.com','AA');
$message->subject('offer');
$message->to('**bob@gmail.com');
2018-02-02
Call to undefined function App\Http\Controllers\file_get_contenes()
2018-01-31
laravel中有Validator验证,但是在复杂的验证中我们可以使用表单验证Requests/UserRequest.php 相比之家简单好用功能很多
2018-01-29
最赞回答 / 慕粉3402813
你可以使用 --tries 选项来指定任务的最大尝试次数,这里我设置为3,尝试了3次后,依然不ok,就会记录到failed_jobs表中
php artisan queue:listen --tries=3
2018-01-26