public function add(Request $request)
    {
        $article = new Article();
        $article->name = 'New Article';
        $article->text = 'The Ancient Ones have been there forever. They wittnessed the beginning of Time itself and will be there, when it ends.
For centuries they lived in darkness but when the sun was born, they were there.\\r\\nThey were there, when the first Humans descended from the trees to walk upright and they were there, when their great society finally collapsed.\\r\\nThroughout the years they gathered the knowledge of the universe, so that nothing will ever be forgotten. They are the keepers of the sun, the last bastion between life and eternal darkness. They are Forever.\\r\\nIf you get chosen by them to dream the sun\'s dream, you follow - and you will live forever.';
        $article->save();
        $asset = new Asset();
        $asset->name = 'New Asset';
        $article->assets()->save($asset);
        $file = new File();
        $file->name = 'Foo';
        $file->extension = '.bar';
        $asset->files()->save($file);
    }