artdarek / neo4j-4-laravel

Neo4j Service Provider for Laravel 4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"Class 'App\Http\Controllers\Neo4j' not found"

mrbardia72 opened this issue · comments

<?php
 
namespace App\Http\Controllers;
 
use Illuminate\Http\Request;

class test extends Controller
{
    public function bbb()
    {
      $ford = Neo4j::makeNode();
$ford->setProperty('name', 'Ford Prefect')
    ->setProperty('occupation', 'travel writer')
    ->save();
 
$arthurId = $arthur->getId();
dd($arthurId);
    }
}