<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: JC Soriano</title>
    <description>The latest articles on DEV Community by JC Soriano (@jcsoriano).</description>
    <link>https://dev.to/jcsoriano</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3625470%2F0db3173c-9c90-4506-96e3-4a3323756525.png</url>
      <title>DEV Community: JC Soriano</title>
      <link>https://dev.to/jcsoriano</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jcsoriano"/>
    <language>en</language>
    <item>
      <title>Speed up your Laravel development using CRUD Templates</title>
      <dc:creator>JC Soriano</dc:creator>
      <pubDate>Mon, 24 Nov 2025 00:13:04 +0000</pubDate>
      <link>https://dev.to/jcsoriano/speed-up-your-laravel-development-using-crud-templates-2k0g</link>
      <guid>https://dev.to/jcsoriano/speed-up-your-laravel-development-using-crud-templates-2k0g</guid>
      <description>&lt;p&gt;Hi Laravel developers! &lt;/p&gt;

&lt;p&gt;I've recently created a new package designed to radically speed up your Laravel application development by generating routes, controllers, models, migrations, factories, requests, resources, and tests - all using a single command. &lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Example
&lt;/h2&gt;

&lt;p&gt;Let's generate a complete CRUD API for the Post model:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;php artisan crud:generate Content/Post &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--template&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;api &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--fields&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"title:string,content:text,published_at:datetime,category:belongsTo,comments:hasMany,status:enum:PublishStatus"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--options&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"scope:user"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The above command generates the following fully functional files:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;app/Http/Controllers/Api/Content/PostController.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;app/Models/Content/Post.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;app/Policies/PostPolicy.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;app/Http/Requests/Content/StorePostRequest.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;app/Http/Requests/Content/UpdatePostRequest.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;app/Http/Resources/Content/PostResource.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;database/migrations/{timestamp}_create_posts_table.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;database/migrations/{timestamp}_create_{pivot}_tables.php&lt;/code&gt; (if belongsToMany or morphToMany relationships are present)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;database/factories/Content/PostFactory.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;tests/Feature/Api/Content/PostControllerTest.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;API routes automatically added to &lt;code&gt;routes/api.php&lt;/code&gt; (will run &lt;code&gt;install:api&lt;/code&gt; if the file doesn't exist yet)&lt;/li&gt;
&lt;li&gt;Laravel Pint run on all generated files&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Check it out
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;strong&gt;Package&lt;/strong&gt;: &lt;a href="https://packagist.org/packages/jcsoriano/laravel-crud-templates" rel="noopener noreferrer"&gt;jcsoriano/laravel-crud-templates&lt;/a&gt;&lt;br&gt;
📚 &lt;strong&gt;Documentation&lt;/strong&gt;: &lt;a href="https://laravelcrudtemplates.com" rel="noopener noreferrer"&gt;laravelcrudtemplates.com&lt;/a&gt;&lt;br&gt;
🐙 &lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/jcsoriano/laravel-crud-templates" rel="noopener noreferrer"&gt;github.com/jcsoriano/laravel-crud-templates&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  3-minute demo
&lt;/h2&gt;

&lt;p&gt;

  &lt;iframe src="https://www.youtube.com/embed/Pi61VZrgkng"&gt;
  &lt;/iframe&gt;


&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>php</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
