{"id":301,"date":"2023-05-22T12:16:50","date_gmt":"2023-05-22T12:16:50","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=301"},"modified":"2023-05-22T12:16:52","modified_gmt":"2023-05-22T12:16:52","slug":"chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/","title":{"rendered":"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel"},"content":{"rendered":"\n<p>In this tutorial im going to share how to use chatgpt in laravel so follow this tutorial in this tutorials i have mentioned in very easy way.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer require openai-php\/laravel\r\n\r\nphp artisan vendor:publish --provider=\"OpenAI\\Laravel\\ServiceProvider\"\r\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"665\" height=\"462\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png\" alt=\"\" class=\"wp-image-302\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png 665w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28-300x208.png 300w\" sizes=\"auto, (max-width: 665px) 100vw, 665px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Then create Controller Once<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan make:controller TestingController<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"105\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-29-1024x105.png\" alt=\"\" class=\"wp-image-303\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-29-1024x105.png 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-29-300x31.png 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-29-768x79.png 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-29.png 1350w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>And paste below code.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\nnamespace App\\Http\\Controllers;\r\nuse Illuminate\\Http\\Request;\r\nuse OpenAI\\Laravel\\Facades\\OpenAI;\r\nclass TestingController extends Controller\r\n{\r\n    public function index()\r\n    {\r\n        $messages = collect(session('messages', &#91;]))->reject(fn ($message) => $message&#91;'role'] === 'system');\r\n        return view('welcome', &#91;\r\n            'messages' => $messages\r\n        ]);\r\n    }\r\n     public function store(Request $request)\r\n    {\r\n        $messages = $request->session()->get('messages', &#91;\r\n            &#91;'role' => 'system', 'content' => 'You are LaravelGPT - A ChatGPT clone. Answer as concisely as possible.']\r\n        ]);\r\n        $messages&#91;] = &#91;'role' => 'user', 'content' => $request->input('message')];\r\n        $response = OpenAI::chat()->create(&#91;\r\n            'model' => 'gpt-3.5-turbo',\r\n            'messages' => $messages\r\n        ]);\r\n        $messages&#91;] = &#91;'role' => 'assistant', 'content' => $response->choices&#91;0]->message->content];\r\n        $request->session()->put('messages', $messages);\r\n        return redirect('\/');\r\n    }\r\n    public function destroy(Request $request)\r\n    {\r\n        $request->session()->forget('messages');\r\n        return redirect('\/');\r\n    }\r\n\r\n}\r\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Next go to route and paste below code<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\nuse OpenAI\\Laravel\\Facades\\OpenAI;\r\nuse Illuminate\\Support\\Facades\\Route;\r\nuse Illuminate\\Support\\Facades\\Request;\r\nuse App\\Http\\Controllers\\TestingController;\r\nuse App\\Http\\Controllers\\Api\\ChatGptController;\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Web Routes\r\n|--------------------------------------------------------------------------\r\n|\r\n| Here is where you can register web routes for your application. These\r\n| routes are loaded by the RouteServiceProvider and all of them will\r\n| be assigned to the \"web\" middleware group. Make something great!\r\n|\r\n*\/\r\n\n\r\nRoute::get('\/', &#91;TestingController::class, 'index']);\r\nRoute::post('\/', &#91;TestingController::class, 'store']);\r\nRoute::get('\/reset', &#91;TestingController::class, 'destroy']);\r\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Next got to welcome.blade.php and paste below code.<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\r\n&lt;html lang=\"{{ str_replace('_', '-', app()->getLocale()) }}\">\r\n    &lt;head>\r\n        &lt;meta charset=\"utf-8\">\r\n        &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n        &lt;title>Laravel&lt;\/title>\r\n        &lt;!-- Fonts -->\r\n        &lt;link rel=\"preconnect\" href=\"https:\/\/fonts.bunny.net\">\r\n        &lt;link href=\"https:\/\/fonts.bunny.net\/css?family=figtree:400,600&amp;display=swap\" rel=\"stylesheet\" \/>\r\n        &lt;script src=\"https:\/\/cdn.tailwindcss.com\">&lt;\/script>\r\n    &lt;\/head>\r\n    &lt;body class=\"antialiased\">\r\n        &lt;div class=\"flex flex-col space-y-4 p-4\">\r\n        @foreach($messages as $message)\r\n            &lt;div class=\"flex rounded-lg p-4 @if ($message&#91;'role'] === 'assistant') bg-green-200 flex-reverse @else bg-blue-200 @endif \">\r\n                &lt;div class=\"ml-4\">\r\n                    &lt;div class=\"text-lg\">\r\n                        @if ($message&#91;'role'] === 'assistant')\r\n                            &lt;a href=\"#\" class=\"font-medium text-gray-900\">LaravelGPT&lt;\/a>\r\n                        @else\r\n                            &lt;a href=\"#\" class=\"font-medium text-gray-900\">You&lt;\/a>\r\n                        @endif\r\n                    &lt;\/div>\r\n                    &lt;div class=\"mt-1\">\r\n                        &lt;p class=\"text-gray-600\">\r\n                            {!! \\Illuminate\\Mail\\Markdown::parse($message&#91;'content']) !!}\r\n                        &lt;\/p>\r\n                    &lt;\/div>\r\n                &lt;\/div>\r\n            &lt;\/div>\r\n        @endforeach\r\n        &lt;\/div>\r\n        &lt;form class=\"p-4 flex space-x-4 justify-center items-center\" action=\"\/\" method=\"post\">\r\n            @csrf\r\n            &lt;label for=\"message\">Ask something:&lt;\/label>\r\n            &lt;input id=\"message\" type=\"text\" name=\"message\" autocomplete=\"off\" class=\"border rounded-md  p-2 flex-1\" \/>\r\n            &lt;a class=\"bg-gray-800 text-white p-2 rounded-md\" href=\"\/reset\">Reset Chat&lt;\/a>\r\n        &lt;\/form>\r\n    &lt;\/body>\r\n&lt;\/html>\r\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Next go to .env and paste below code.<\/h3>\n\n\n\n<p>First generate the secret key<\/p>\n\n\n\n<p>Open this url => <a href=\"https:\/\/platform.openai.com\/account\/api-keys\">https:\/\/platform.openai.com\/account\/api-keys<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">And generate key and paste in .env file<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>OPENAI_API_KEY=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\r<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Now run your project<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-30-1024x576.png\" alt=\"\" class=\"wp-image-304\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-30-1024x576.png 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-30-300x169.png 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-30-768x432.png 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-30.png 1366w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial im going to share how to use chatgpt in laravel so follow this tutorial in this tutorials i have mentioned in very easy way&#8230;. <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[25],"tags":[86,50,87],"class_list":["post-301","post","type-post","status-publish","format-standard","hentry","category-laravel","tag-chat-gpt-implement-laravel","tag-chatgpt","tag-chatgpt-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Chat Gpt Implement in laravel 9 | ChatGPT installation laravel - DevOps Freelancer<\/title>\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.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"In this tutorial im going to share how to use chatgpt in laravel so follow this tutorial in this tutorials i have mentioned in very easy way....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/amitsthakurs\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-22T12:16:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-22T12:16:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png\" \/>\n<meta name=\"author\" content=\"Amit Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/amits_thakurs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/\",\"url\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/\",\"name\":\"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png\",\"datePublished\":\"2023-05-22T12:16:50+00:00\",\"dateModified\":\"2023-05-22T12:16:52+00:00\",\"author\":{\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#primaryimage\",\"url\":\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png\",\"contentUrl\":\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png\",\"width\":665,\"height\":462},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.devopsfreelancer.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/#website\",\"url\":\"https:\/\/www.devopsfreelancer.com\/blog\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b\",\"name\":\"Amit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"caption\":\"Amit Kumar\"},\"description\":\"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.\",\"sameAs\":[\"https:\/\/www.facebook.com\/amitsthakurs\/\",\"https:\/\/www.instagram.com\/amits_thakurs\/\",\"https:\/\/www.linkedin.com\/in\/amits-thakurs\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs\"],\"url\":\"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel - DevOps Freelancer","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.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/","og_locale":"en_US","og_type":"article","og_title":"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel - DevOps Freelancer","og_description":"In this tutorial im going to share how to use chatgpt in laravel so follow this tutorial in this tutorials i have mentioned in very easy way....","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2023-05-22T12:16:50+00:00","article_modified_time":"2023-05-22T12:16:52+00:00","og_image":[{"url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png","type":"","width":"","height":""}],"author":"Amit Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/amits_thakurs","twitter_misc":{"Written by":"Amit Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/","name":"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png","datePublished":"2023-05-22T12:16:50+00:00","dateModified":"2023-05-22T12:16:52+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#primaryimage","url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png","contentUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/05\/image-28.png","width":665,"height":462},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/chat-gpt-implement-in-laravel-9-chatgpt-installation-laravel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Chat Gpt Implement in laravel 9 | ChatGPT installation laravel"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b","name":"Amit Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","caption":"Amit Kumar"},"description":"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.","sameAs":["https:\/\/www.facebook.com\/amitsthakurs\/","https:\/\/www.instagram.com\/amits_thakurs\/","https:\/\/www.linkedin.com\/in\/amits-thakurs\/","https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs"],"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/301","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=301"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/301\/revisions"}],"predecessor-version":[{"id":305,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/301\/revisions\/305"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}