i am trying to sent data to view from function in controller but the variable view is not showing any result
public function goedit($id)
{
    $catg = Category::where('cat_id',$id)->first();
    return view('product.gocatedit')->with('row', $catg);
}
and my view is
 @if(isset($row))
                <form action="{{action('ProductController@edit')}}" method="post">
                  <input type="hidden" name="_token" value="{{ csrf_token() }}">
                  <div class="col-sm-12">
                    <h1 style="text-align:center;">Edit Items</h1>
                    <table  class="table">
                            <thead>
                            <tr>
                              <th>ID</th>
                              <th>Category</th>
                              <th>Item</th>
                              <th>Price</th>
                              <th></th>
                            </tr>
                            </thead>
                            <tbody>
                            <tr>
                              <input type="hidden" name="item_id" value="{{ $row->item_id}}">
                              <td><input class="form-control" name="item_name" value="{{$row->item_name}}" /></td>
                              <td><input class="form-control" name="item_price" value="{{$row->item_price}}" /></td>
                              <td><input class="btn btn-primary btn-block btn-flat" type="submit" value="Edit"></td>
                            </tr>
                            </tbody>
                    </table>
                    </div>
                </form>
            @endif  
please help thanks
 
     
     
    