我有一个关于mysql的表,我想显示其中一个字段,其id
字段,我想在Laravel的电子邮件布局上显示它。 id
字段由rand()
函数生成的一些随机代码组成。
我已经尝试过这种方式:
{{ $data->id }}
但是,电子邮件视图上的返回值为0
。
//这就是我在电子邮件视图上写的内容
<td align="left" class="esd-block-text es-p15t es-p10b">
<p style="font-size: 16px; color: #777777;">Thank you for filling in the lost items form. Here are some details from your report .<br></p>
<p style="font-size: 16px; color: #777777;">first your report ticket number is {{ $data->id }} <br></p>
<p style="font-size: 16px; color: #777777;"><br></p>
<p style="font-size: 16px; color: #777777;">Your details:<br></p>
<table style="width:100%" class="table table-striped table-bordered table-hover table-condensed">
我希望输出是数据库中id
字段中的id
。但是事实证明是0
。
知道为什么吗?
这是控制器:
$data = Dekripsi::create([
'id'=>mt_rand(),
'date' => Carbon::parse(request('date')),
'location' => request('location'),
'locationdetails' => request('locationdetails'),
'flightnumber' => request('flightnumber'),
'origin' => request('origin'),
'destination' => request('destination'),
'typeproperty' => request('typeofproperty'),
'other' => request('other'),
'itemimage' => $nama,
'name' => request('name'),
'email' => request('email'),
'phone' => request('phone'),
]);