return Property::make('property.view')
->with('property', $property)
->get();
should be
return View::make('property.view')
->with('property', $property)
also delete '->get()' in index() method
return View::make('property.view')
->with('property', $property)
->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community