{"id":5610,"date":"2023-08-19T12:58:21","date_gmt":"2023-08-19T16:58:21","guid":{"rendered":"https:\/\/www.cloudsurph.com\/?p=5610"},"modified":"2023-08-26T10:54:14","modified_gmt":"2023-08-26T14:54:14","slug":"building-a-crud-application-with-laravel","status":"publish","type":"post","link":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/","title":{"rendered":"Building a CRUD Application with Laravel"},"content":{"rendered":"<p>In this article, we will explain how to Build a CRUD Application with Laravel. Getting started with Laravel, a popular PHP web application framework, involves several steps to CRUD and set up your development environment.<\/p>\n<p>Building a CRUD (Create, Read, Update, Delete) application using Laravel is a common task in web development. Laravel is a PHP framework that provides a robust and elegant way to create web applications. Here&#8217;s a step-by-step guide to building a basic CRUD application using Laravel:<\/p>\n<h3>Step 1: Setup and Installation<\/h3>\n<p>Firstly, Install Laravel using Composer (ensure you have Composer installed):<\/p>\n<pre class=\"prettyprint\">\r\ncomposer global require laravel\/installer\r\n<\/pre>\n<p>Secondly, Create a new Laravel project:<\/p>\n<pre class=\"prettyprint\">\r\nlaravel new CrudApp\r\n<\/pre>\n<p>Now, Navigate to the project directory:<\/p>\n<pre class=\"prettyprint\">\r\ncd CrudApp\r\n<\/pre>\n<h3>Step 2: Database Configuration<\/h3>\n<p>Open the <code>.env<\/code> file in your project and configure the database settings (database name, username, password).<\/p>\n<p>Create a new migration for your resource (e.g., <code>posts<\/code>):<\/p>\n<pre class=\"prettyprint\">\r\nphp artisan make:migration create_posts_table\r\n<\/pre>\n<p>Open the newly created migration file in the <code>database\/migrations<\/code> directory and define the schema for your resource.<\/p>\n<p>So, Run the migration to create the database table:<\/p>\n<pre class=\"prettyprint\">\r\nphp artisan migrate\r\n<\/pre>\n<h3>Step 3: Model and Controller<\/h3>\n<p>Now, Create a model for your resource (e.g., <code>Post<\/code>):<\/p>\n<pre class=\"prettyprint\">\r\nphp artisan make:model Post\r\n<\/pre>\n<p>Create a controller for your resource (e.g., <code>PostController<\/code>):<\/p>\n<pre class=\"prettyprint\">\r\nphp artisan make:controller PostController\r\n<\/pre>\n<p>In the controller, define methods for CRUD operations (<code>index<\/code>, <code>create<\/code>, <code>store<\/code>, <code>show<\/code>, <code>edit<\/code>, <code>update<\/code>, <code>destroy<\/code>).<\/p>\n<h3>Step 4: Routes<\/h3>\n<p>Open the <code>routes\/web.php<\/code> file and define routes for your CRUD operations. For example:<\/p>\n<pre class=\"prettyprint\">\r\nRoute::resource('posts', 'PostController');\r\n<\/pre>\n<h3>Step 5: Views<\/h3>\n<p>Create the necessary views in the <code>resources\/views<\/code> directory for each CRUD operation (<code>index.blade.php<\/code>, <code>create.blade.php<\/code>, <code>edit.blade.php<\/code>, <code>show.blade.php<\/code>).<\/p>\n<p>In the views, use Laravel&#8217;s Blade templating engine to display data and forms.<\/p>\n<h3>Step 6: Controller Logic<\/h3>\n<ol>\n<li>In your controller, implement the logic for each CRUD operation:\n<ul>\n<li><code>index<\/code>: Fetch all records and pass them to the view.<\/li>\n<li><code>create<\/code> and <code>store<\/code>: Display and handle the form for creating new records.<\/li>\n<li><code>show<\/code>: Fetch and display a single record.<\/li>\n<li><code>edit<\/code> and <code>update<\/code>: Display and handle the form for updating records.<\/li>\n<li><code>destroy<\/code>: Delete a record.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>Step 7: Form Handling<\/h3>\n<p>Use Laravel&#8217;s form helpers (<code>Form::open<\/code>, <code>Form::input<\/code>, etc.) or Blade directives (<code>@csrf<\/code>, <code>@method<\/code>) to create and handle forms in your views.<\/p>\n<ul>\n<li><a href=\"https:\/\/www.cloudsurph.com\/create-a-heap-in-javascript\/\">Create a Heap in JavaScript<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/inserting-elements-into-a-heap-in-javascript\/\" aria-current=\"page\">Inserting Elements into a Heap in JavaScript<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/removing-elements-from-the-heap-in-javascript\/\" aria-current=\"page\">Removing Elements from the Heap in JavaScript<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/javascript-how-to-calculate-age-from-birthdate\/\">JavaScript How to Calculate Age from Birthdate<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/how-to-interact-javascript-with-rest-api\/\">How to interact JavaScript with REST API<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/how-to-break-foreach-in-javascript\/\" aria-current=\"page\">How to break ForEach in JavaScript<\/a><\/li>\n<li><a href=\"https:\/\/www.cloudsurph.com\/store-data-in-localstorage-in-javascript\/\" aria-current=\"page\">Store Data in LocalStorage in JavaScript<\/a><\/li>\n<\/ul>\n<h3>Step 8: Styling<\/h3>\n<p>You can use CSS frameworks like Bootstrap to style your application&#8217;s views.<\/p>\n<h3>Step 9: Testing<\/h3>\n<p>Test your application thoroughly to ensure all CRUD operations work as expected.<\/p>\n<h3>Step 10: Run Your Application<\/h3>\n<p>Run your Laravel development server:<\/p>\n<pre class=\"prettyprint\">\r\nphp artisan serve\r\n<\/pre>\n<p>Now, you can\u00a0 access your application in your browser at <code>http:\/\/localhost:8000<\/code>.<\/p>\n<p>Congratulations! You&#8217;ve now created a basic CRUD application using Laravel. From here, you can further enhance your application by adding validation, authentication, pagination, and more advanced features. Remember to refer to Laravel&#8217;s documentation for more detailed information on each step and for exploring advanced features.<\/p>\n<h5><em><strong>If you want then buy a good, reliable, secure web\u00a0<a href=\"https:\/\/www.cloudsurph.com\/windows-vps-hosting\/\">hosting<\/a>\u00a0service \u00a0from here:\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/\">click here<\/a><\/strong><\/em><\/h5>\n<p>In Conclusion,\u00a0 If you enjoyed reading this article and have more questions please reach out to our\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/submitticket.php?step=2&amp;deptid=1\">support team<\/a>\u00a0via live chat or\u00a0<a href=\"mailto:support@cloudsurph.com\">email<\/a>\u00a0and we would be glad to help you.\u00a0In Other Words, we provide server\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/\">hosting<\/a>\u00a0for all types of need and we can even get your\u00a0<a href=\"https:\/\/hosting.cloudsurph.com\/\">server<\/a>\u00a0up and running with the service of your choice.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will explain how to Build a CRUD Application with Laravel. Getting started with Laravel, a popular PHP web application framework, involves several steps to CRUD and set up your development environment. Building a CRUD (Create, Read, Update, Delete) application using Laravel is a common task in web development. Laravel is a [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":5611,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[157,25,150,158,159,44,1],"tags":[54,47,105,103,48,113],"class_list":["post-5610","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos-7","category-web-hosting-virtualization","category-laravel","category-linux-basics","category-linux-server","category-kvm-xen","category-virtual-private-servers","tag-best-vps-hosting-server-maryland","tag-cheap-cloud-servers","tag-cheap-storage-server-hosting","tag-cheapest-vps","tag-dedicated-server-hosting-in-washington-d-c","tag-speed-test-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Building a CRUD Application with Laravel<\/title>\n<meta name=\"description\" content=\"How to Building a CRUD Application with Laravel, Building a CRUD Application with Laravel, Laravel CRUD, create CRUD for Laravel\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Building a CRUD Application with Laravel\" \/>\n<meta property=\"og:description\" content=\"How to Building a CRUD Application with Laravel, Building a CRUD Application with Laravel, Laravel CRUD, create CRUD for Laravel\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudsurph Web Hosting Washington D.C.\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/CloudSurph\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-19T16:58:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-26T14:54:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2023\/08\/Building-a-CRUD-Application-with-Laravel.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1264\" \/>\n\t<meta property=\"og:image:height\" content=\"760\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rony\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@cloudsurph\" \/>\n<meta name=\"twitter:site\" content=\"@Cloud_Surph\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rony\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/\"},\"author\":{\"name\":\"Rony\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/person\\\/ac9b4dd136d96e50d5f29c560191e7ed\"},\"headline\":\"Building a CRUD Application with Laravel\",\"datePublished\":\"2023-08-19T16:58:21+00:00\",\"dateModified\":\"2023-08-26T14:54:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/\"},\"wordCount\":521,\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Building-a-CRUD-Application-with-Laravel.jpg\",\"keywords\":[\"Best VPS hosting server Maryland\",\"Cheap Cloud Servers\",\"Cheap Storage Server Hosting\",\"Cheapest VPS\",\"Dedicated Server Hosting in Washington D.C\",\"Speed test VPS\"],\"articleSection\":[\"CentOS 7\",\"Cloud Hosting\",\"Laravel\",\"Linux Basics\",\"Linux Server\",\"Virtualization\",\"VPS Servers\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/\",\"name\":\"How to Building a CRUD Application with Laravel\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Building-a-CRUD-Application-with-Laravel.jpg\",\"datePublished\":\"2023-08-19T16:58:21+00:00\",\"dateModified\":\"2023-08-26T14:54:14+00:00\",\"description\":\"How to Building a CRUD Application with Laravel, Building a CRUD Application with Laravel, Laravel CRUD, create CRUD for Laravel\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Building-a-CRUD-Application-with-Laravel.jpg\",\"contentUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Building-a-CRUD-Application-with-Laravel.jpg\",\"width\":1264,\"height\":760,\"caption\":\"How to Building a CRUD Application with Laravel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/building-a-crud-application-with-laravel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cloudsurph.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Building a CRUD Application with Laravel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#website\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/\",\"name\":\"Cloudsurph Web Hosting Washington D.C.\",\"description\":\"Dedicated Server Hosting\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cloudsurph.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#organization\",\"name\":\"CloudSurph Technology Solutions\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/cloudsurph-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.cloudsurph.com\\\/wp-content\\\/uploads\\\/2016\\\/04\\\/cloudsurph-logo.png\",\"width\":2348,\"height\":1692,\"caption\":\"CloudSurph Technology Solutions\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/CloudSurph\\\/\",\"https:\\\/\\\/x.com\\\/Cloud_Surph\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.cloudsurph.com\\\/#\\\/schema\\\/person\\\/ac9b4dd136d96e50d5f29c560191e7ed\",\"name\":\"Rony\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g\",\"caption\":\"Rony\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/cloudsurph\"],\"url\":\"https:\\\/\\\/www.cloudsurph.com\\\/author\\\/ron\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Building a CRUD Application with Laravel","description":"How to Building a CRUD Application with Laravel, Building a CRUD Application with Laravel, Laravel CRUD, create CRUD for Laravel","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/","og_locale":"en_US","og_type":"article","og_title":"How to Building a CRUD Application with Laravel","og_description":"How to Building a CRUD Application with Laravel, Building a CRUD Application with Laravel, Laravel CRUD, create CRUD for Laravel","og_url":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/","og_site_name":"Cloudsurph Web Hosting Washington D.C.","article_publisher":"https:\/\/www.facebook.com\/CloudSurph\/","article_published_time":"2023-08-19T16:58:21+00:00","article_modified_time":"2023-08-26T14:54:14+00:00","og_image":[{"width":1264,"height":760,"url":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2023\/08\/Building-a-CRUD-Application-with-Laravel.jpg","type":"image\/jpeg"}],"author":"Rony","twitter_card":"summary_large_image","twitter_creator":"@cloudsurph","twitter_site":"@Cloud_Surph","twitter_misc":{"Written by":"Rony","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#article","isPartOf":{"@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/"},"author":{"name":"Rony","@id":"https:\/\/www.cloudsurph.com\/#\/schema\/person\/ac9b4dd136d96e50d5f29c560191e7ed"},"headline":"Building a CRUD Application with Laravel","datePublished":"2023-08-19T16:58:21+00:00","dateModified":"2023-08-26T14:54:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/"},"wordCount":521,"publisher":{"@id":"https:\/\/www.cloudsurph.com\/#organization"},"image":{"@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2023\/08\/Building-a-CRUD-Application-with-Laravel.jpg","keywords":["Best VPS hosting server Maryland","Cheap Cloud Servers","Cheap Storage Server Hosting","Cheapest VPS","Dedicated Server Hosting in Washington D.C","Speed test VPS"],"articleSection":["CentOS 7","Cloud Hosting","Laravel","Linux Basics","Linux Server","Virtualization","VPS Servers"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/","url":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/","name":"How to Building a CRUD Application with Laravel","isPartOf":{"@id":"https:\/\/www.cloudsurph.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2023\/08\/Building-a-CRUD-Application-with-Laravel.jpg","datePublished":"2023-08-19T16:58:21+00:00","dateModified":"2023-08-26T14:54:14+00:00","description":"How to Building a CRUD Application with Laravel, Building a CRUD Application with Laravel, Laravel CRUD, create CRUD for Laravel","breadcrumb":{"@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#primaryimage","url":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2023\/08\/Building-a-CRUD-Application-with-Laravel.jpg","contentUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2023\/08\/Building-a-CRUD-Application-with-Laravel.jpg","width":1264,"height":760,"caption":"How to Building a CRUD Application with Laravel"},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudsurph.com\/building-a-crud-application-with-laravel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cloudsurph.com\/"},{"@type":"ListItem","position":2,"name":"Building a CRUD Application with Laravel"}]},{"@type":"WebSite","@id":"https:\/\/www.cloudsurph.com\/#website","url":"https:\/\/www.cloudsurph.com\/","name":"Cloudsurph Web Hosting Washington D.C.","description":"Dedicated Server Hosting","publisher":{"@id":"https:\/\/www.cloudsurph.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cloudsurph.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.cloudsurph.com\/#organization","name":"CloudSurph Technology Solutions","url":"https:\/\/www.cloudsurph.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudsurph.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2016\/04\/cloudsurph-logo.png","contentUrl":"https:\/\/www.cloudsurph.com\/wp-content\/uploads\/2016\/04\/cloudsurph-logo.png","width":2348,"height":1692,"caption":"CloudSurph Technology Solutions"},"image":{"@id":"https:\/\/www.cloudsurph.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/CloudSurph\/","https:\/\/x.com\/Cloud_Surph"]},{"@type":"Person","@id":"https:\/\/www.cloudsurph.com\/#\/schema\/person\/ac9b4dd136d96e50d5f29c560191e7ed","name":"Rony","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/40163fe1eb49d5eddd81954e8ad5122633e141df15b0733d07fbe4a156688ba5?s=96&d=mm&r=g","caption":"Rony"},"sameAs":["https:\/\/x.com\/cloudsurph"],"url":"https:\/\/www.cloudsurph.com\/author\/ron\/"}]}},"_links":{"self":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts\/5610","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/comments?post=5610"}],"version-history":[{"count":1,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts\/5610\/revisions"}],"predecessor-version":[{"id":5612,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/posts\/5610\/revisions\/5612"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/media\/5611"}],"wp:attachment":[{"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/media?parent=5610"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/categories?post=5610"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.cloudsurph.com\/wp-json\/wp\/v2\/tags?post=5610"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}