echo App\Post::count();
posts
$post = new App\Post(); $post->title = 'the post title'; $post->content = 'the post body'; $post->save();
$post->delete();
Pro tip: use ```triple backticks around text``` to write in code fences