Commit 2bcf7ed3 authored by Taylor Otwell's avatar Taylor Otwell

removed with method from view class.

parent edbf7f3b
......@@ -83,18 +83,6 @@ class View {
return $this;
}
/**
* Merge an array into the view data.
*
* @param array $data
* @return View
*/
public function with($data)
{
$this->data = array_merge($this->data, $data);
return $this;
}
/**
* Get the parsed content of the view.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment