Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created November 20, 2021 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/0127ce88b9370d420fd3ef9c86a747e8 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/0127ce88b9370d420fd3ef9c86a747e8 to your computer and use it in GitHub Desktop.
<?php
use App\Models;
Post::create([
"title" => "Nuevo curso",
]);
Post::create([
"title" => "Nuevo coche",
"post_type" => PostType::Car,
]);
Post::create([
"title" => "Nuevo proyecto",
"post_type" => PostType::Project,
]);
Post::create([
"title" => "Nuevo proyecto 2",
"post_type" => PostType::Project,
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment