SettingController.phpLaravel:SettingController.phpライン373内の文字列への変換アレイ
public function SendPicture(Request $request) {
$title = "Picture Purchase";
$domain = $_SERVER['SERVER_NAME'];
$email = DB::table('users') - > where('domain', $domain) - > get();
$content = "$email purchase your picture : ";
foreach($request - > input('pic') as $key => $value) {
$content. = "$value".".jpg ";
}
}
ErrorException:配列の文字列に変換
line 373: $content = "$email purchase your picture : ";
おそらく上記のように文字列に変換できないので '$ email'があります。 –
SendPicture関数dd($ email)の後にその出力を表示してください –
$ email = DB :: table( 'users ') - >ここで(' domain '、$ domain) - > value(' email '); –