P
Size: a a a
P
P
P
UN
return response()->download($filepath, "name_of_csv.csv", ['location' => some_url']);Выдает 302 статус
UN
S
O
O
AP
AP
D
I
AP
I
I
I
public function with($key, $value = null)
{
if (is_array($key)) {
$this->data = array_merge($this->data, $key);
} else {
$this->data[$key] = $value;
}
return $this;
}
I
public function with($key, $value = null)
{
$key = is_array($key) ? $key : [$key => $value];
foreach ($key as $k => $v) {
$this->session->flash($k, $v);
}
return $this;
}
I
R#
VY