$pdf = \App::make('dompdf.wrapper');
$pdf->loadView('pdf.offer', [ 'offer' => $offer ]);
header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename=".str_slug($offer->title . '_' . $offer->id).'.pdf');
return $pdf->download(str_slug($offer->title . '_' . $offer->id).'.pdf');
Ticket::with('messages')->get()
protected $casts = [
'options' => 'array',
];
where
передать массив, чекбоксов и все. Например:$users = DB::table('users')->where([
// То есть сюда массив с тем, что там у вас в форме на выбирали при поиске и все.
['sex', 'man'],
['sex', 'female'],
])->get();
$users = DB::table('users')
// ['man', 'female'] Это массив с реквеста, тут может быть и null и man и сразу все вместе... и что вам нужно
->whereIn('sex', ['man', 'female'])
->get();
if($location->DEPTH_LEVEL > 1) // Если не главный родитель то продолжаем
{
$par_ar = DB::table('loc_name')->where('LANGUAGE_ID', 'ru')->where('LOCATION_ID', $parent)->first();
get_full_city($par_ar, $full_arr); // Отправляем на следующий круг
}
if($location->DEPTH_LEVEL > 1) // Если не главный родитель то продолжаем
{
$par_ar = DB::table('loc_name')->where('LANGUAGE_ID', 'ru')->where('LOCATION_ID', $parent)->first();
return get_full_city($par_ar, $full_arr); // Отправляем на следующий круг
}
$count = DB::table('tbl_name')->where('vid', '=', $vid)->count();
DB::table('tbl_name')->where('vid', '=', $vid)
->orderBy('created_at', 'asc')
->skip(500)->take($count-500)
->delete();
$AllQuestions = Question::with('user', 'file')->get();
class Question extends Model
{
//
public function user()
{
return $this->belongsTo('App\User');
}
public function file(){
return $this->hasOne('App\Models\File','user_id','user_id')->where('module_id', 'user_profile');
}
}