我正在構建一個應用程序,它假設發送生日提醒電子郵件給用戶。一切工作正常與laravel 5.2,但現在我想使用Mailables我不知道在哪裏循環用戶。這是我可郵寄類.. namespace App\Mail;
use App\User;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Q
我使用Laravel 4.2.*我有一個User模型,其中insert()方法工作正常,但是當我使用create()方法時拋出一個錯誤: Array to string conversion 我的模型: class User extends Eloquent{
public $table = 'users';
protected $primaryKey = 'user_id'