<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>#PHP #Laravel #Training #Courses #HTML #CSS #JavaScript #MySOL #PHPwithLaravel Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/php-laravel-training-courses-html-css-javascript-mysol-phpwithlaravel/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/php-laravel-training-courses-html-css-javascript-mysol-phpwithlaravel/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Tue, 28 Mar 2023 08:08:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>What is HTML</title>
		<link>https://www.aiuniverse.xyz/what-is-html/</link>
					<comments>https://www.aiuniverse.xyz/what-is-html/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Tue, 28 Mar 2023 07:30:33 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[#PHP #Laravel #Training #Courses #HTML #CSS #JavaScript #MySOL #PHPwithLaravel]]></category>
		<category><![CDATA[example of html]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html document example]]></category>
		<category><![CDATA[html tutorials]]></category>
		<category><![CDATA[html tutorials for beginners]]></category>
		<category><![CDATA[hypertext]]></category>
		<category><![CDATA[introducton of html]]></category>
		<category><![CDATA[markup language]]></category>
		<category><![CDATA[overview of html]]></category>
		<category><![CDATA[webpages]]></category>
		<category><![CDATA[what is html]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=16222</guid>

					<description><![CDATA[<p>HTML stands for Hyper Text Markup Language&#160;· HTML is the standard markup language for creating Web pages and Web Applications · HTML describes the structure of a <a class="read-more-link" href="https://www.aiuniverse.xyz/what-is-html/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-html/">What is HTML</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img fetchpriority="high" decoding="async" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-1024x1024.png" alt="" class="wp-image-16224" width="228" height="228" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-1024x1024.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-300x300.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-150x150.png 150w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-768x768.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-1536x1536.png 1536w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo.png 2048w" sizes="(max-width: 228px) 100vw, 228px" /></figure>
</div>


<p>HTML stands for  <strong>Hyper Text Markup Language</strong>&nbsp;· HTML is the standard markup language for creating Web pages and Web Applications · HTML describes the structure of a Web page ·</p>



<p>The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML. The most widely used version throughout the 2000&#8217;s was HTML 4.01, which became an official standard in December 1999. Currently another popular version is HTML5.&nbsp;</p>



<p><strong>Hyper Text:</strong> Hypertext is&nbsp;text which contains links to other texts. Whenever you click on a link which brings you to a new webpage, you have clicked on a hypertext. Hyper Text is a way to link two or more web pages with each other.</p>



<p><strong>Markup Language:</strong> A text, which is surrounding an  angular bracket is called markup language. </p>



<p><strong>Webpages:</strong> Webpage is nothing but a page which contain some information such as text, images, forms, tables, etc.</p>



<p><strong>Websites:</strong> Collection of webpages are known as websites.</p>



<p><strong>Example of HTML Documents:</strong></p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Web Page Title&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;h1&gt;My 1st Heading&lt;/h1&gt;
&lt;p&gt;My 1st paragraph.&lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre>



<p><strong>Example Explained:</strong></p>



<ul class="wp-block-list">
<li><code><strong>&lt;!DOCTYPE html&gt;</strong></code>&nbsp;It&#8217;s defines document types (Like HTML5 document).</li>



<li><code><strong>&lt;html&gt;</strong></code>&nbsp;It is the root element of an HTML page.</li>



<li><strong><code>&lt;head&gt;</code>&nbsp;</strong>Head elements contains meta information about the HTML page</li>



<li><strong><code>&lt;title&gt;</code>&nbsp;</strong>Title element specifies a title for the HTML page.</li>



<li><code><strong>&lt;body&gt;</strong></code>&nbsp;Body element defines the document&#8217;s body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.</li>



<li><strong><code>&lt;h1&gt;</code>&nbsp;</strong>Heading element defines a large heading.</li>



<li><code><strong>&lt;p&gt;</strong></code>&nbsp; Paragraph element defines a paragraph.</li>
</ul>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-html/">What is HTML</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/what-is-html/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Introduction of PHP and Laravel</title>
		<link>https://www.aiuniverse.xyz/introduction-of-php-and-laravel/</link>
					<comments>https://www.aiuniverse.xyz/introduction-of-php-and-laravel/#respond</comments>
		
		<dc:creator><![CDATA[narayan]]></dc:creator>
		<pubDate>Wed, 14 Jul 2021 13:34:41 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[#PHP #Laravel #Training #Courses #HTML #CSS #JavaScript #MySOL #PHPwithLaravel]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=14985</guid>

					<description><![CDATA[<p>Laravel&#160;is a&#160;PHP&#160;based web-framework like Codeigniter.&#160;Laravel&#160;is one of the open-source&#160;PHP&#160;frameworks.Laravel&#160;follows the model-view-controller (MVC) architectural pattern.&#160;Laravel&#160;is one of the most popular&#160;PHP&#160;frameworks after Codeigniter. PHP PHP is a server side <a class="read-more-link" href="https://www.aiuniverse.xyz/introduction-of-php-and-laravel/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/introduction-of-php-and-laravel/">Introduction of PHP and Laravel</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Laravel&nbsp;is a&nbsp;PHP&nbsp;based web-framework like Codeigniter.&nbsp;Laravel&nbsp;is one of the open-source&nbsp;PHP&nbsp;frameworks.Laravel&nbsp;follows the model-view-controller (MVC) architectural pattern.&nbsp;Laravel&nbsp;is one of the most popular&nbsp;PHP&nbsp;frameworks after Codeigniter.</p>



<h2 class="wp-block-heading">PHP</h2>



<p>PHP is a server side scripting language. that is used to develop Static websites or Dynamic websites or Web applications. PHP stands for Hypertext Preprocessor, that earlier stood for Personal Home Pageskfःf (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.</p>



<h2 class="wp-block-heading">Laravel</h2>



<p>Laravel is a PHP based web framework for building high-end web applications using its significant and graceful syntaxes. It comes with a robust collection of tools and provides application architecture. Noreover, it includes various characteristics of technologies like ASPknet MVC, Codeigniter, Ruby on Rails, and Many More. This framework this exclusive open-source framework.</p>



<p><a><strong>What are the Objectives for PHP with Laravel?</strong></a></p>



<ul class="wp-block-list"><li>Understand PHP concepts</li><li>You will learn to create clean URL&#8217;s and remove the .php from files</li><li>You will learn to use bootstrap by getting experience from the project</li><li>You will learn to debug your code</li><li>You will learn to create pagination</li><li>You will code refactoring</li><li>You will learn to debug (fix your code)</li><li>You will learn to use an API to bring data from a database to a graphical interface</li><li>There is so much more and my hands are just tired of typing :</li></ul>



<p><a><strong>Pre-requisites</strong></a></p>



<ul class="wp-block-list"><li>Some basic knowledge of HTML, CSS, JavaScript and Basic MySOL.</li><li>Some basic knowledge of Internet and its terms.</li><li>To write php code need text editor like, Notepad++, Visual Studio Code, Sublime Text etc.</li><li>XAMPP or WAMPP as local server to run the php code.</li></ul>



<h2 class="wp-block-heading">Agenda of PHP with Laravel</h2>



<p><a><strong>Introduction &#8211; PHP</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Intended Audience</li><li>History of PHP</li><li>What&#8217;s Possible?</li><li>Sample Programs</li><li>Reserved Keywords</li></ul>



<p><a><strong>General/Data Type</strong></a></p>



<ul class="wp-block-list"><li>What are the basic commands in Selenium?<ul><li>Intended Audience</li><li>History of PHP</li><li>What&#8217;s Possible?</li><li>Sample Programs</li><li>Reserved Keywords</li></ul></li></ul>



<p><a><strong>Functions</strong></a></p>



<ul class="wp-block-list"><li>What Is a Function?</li><li>Creating a Function</li><li>Calling a Function</li><li>Passing Parameters</li><li>Default Parameters</li><li>Returning Values</li><li>Variable Functions</li><li>Variable Scope</li><li>Global Variables</li></ul>



<p><a><strong>String</strong></a></p>



<ul class="wp-block-list"><li>Single Quoted Strings</li><li>Double Quoted Strings</li><li>Here Document</li><li>print()</li><li>Changing Case</li><li>strlen()</li><li>strpos()</li><li>str_replace()</li><li>substr()</li><li>str_split()</li></ul>



<p><a><strong>Arrays</strong></a></p>



<ul class="wp-block-list"><li>overview</li><li>About Arrays</li><li>Indexed Arrays</li><li>Associative Arrays</li><li>array_key_exists()</li><li>in_array()</li><li>array_push()</li><li>array_pop()</li><li>unset()</li><li>Sorting Arrays</li><li>count()</li><li>Foreach Loop</li><li>Multi-dimensional Array</li></ul>



<p><a><strong>Classes &amp; Object</strong></a></p>



<ul class="wp-block-list"><li>Creating a Simple Class</li><li>Creating an Object</li><li>Creating Properties</li><li>Accessing Properties</li><li>Creating Constants</li><li>Accessing Constants</li><li>Creating Methods</li><li>$this</li><li>Accessing Methods</li><li>Constructors</li><li>Initial Parameter Passing</li><li>Inheritance</li><li>Protected Properties</li><li>Private Properties</li><li>Static Properties &amp; Methods</li><li>Scope Resolution Operator ::</li><li>Include File</li><li>Require File</li></ul>



<p><a><strong>Operators and Control Structures</strong></a></p>



<ul class="wp-block-list"><li>Arithmetic Operators</li><li>Incrementing/Decrementing Operators</li><li>Assignment Operators</li><li>String Operator</li><li>Comparison Operators</li><li>Spaceship Operator</li><li>Logical Operators</li><li>If Statement</li><li>Else If</li><li>Switch Statement</li><li>Ternary Operator</li><li>Null Coalesce Operator</li><li>While Loop</li><li>For Loop</li></ul>



<p><a><strong>Database</strong></a></p>



<ul class="wp-block-list"><li>Possible Databases</li><li>PDO vs. MySQli</li><li>Setting up MySQL on Windows</li><li>Creating a Database and Table with phpMyAdmin</li><li>Connecting to Database</li><li>Close Database Connection</li><li>Executing a Query &#8211; Delete, Update, Insert</li><li>Grabbing Inserted Id</li><li>Select Data From Database</li><li>Prepared Statement Example</li><li>PDO Example</li></ul>



<p><a><strong>Web Programming</strong></a></p>



<ul class="wp-block-list"><li>Setup Web Site Location &#8211; Linux</li><li>Setup Web Site Location &#8211; Windows</li><li>Web Site Structure and Layout</li><li>Shorten Syntax with HTML</li><li>$_GET</li><li>$_POST</li><li>Form Validation</li><li>session_start()</li><li>$_SESSION</li><li>session_destroy()</li></ul>



<p><a><strong>PHP &#8211; TOAST</strong></a></p>



<ul class="wp-block-list"><li>Setup Web Site Location &#8211; Linux</li><li>Setup Web Site Location &#8211; Windows</li><li>Web Site Structure and Layout</li><li>Shorten Syntax with HTML</li><li>$_GET</li><li>$_POST</li><li>Form Validation</li><li>session_start()</li><li>$_SESSION</li><li>session_destroy()</li></ul>



<p><a><strong>Building the LAMP Stack</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Installation</li><li>Alternatives</li><li>Accessing Form Data with PHP</li><li>HTML forms</li><li>Demo: Creating a Form</li><li>Accessing Form Data with PHP</li><li>Validating User Input</li><li>Demonstration &#8212; Input Validation</li></ul>



<p><a><strong>The Lending Library&#8217;s Database</strong></a></p>



<ul class="wp-block-list"><li>Designing the Database</li><li>Creating and Populating the Database</li><li>Querying and Updating the Database</li><li>Accessing a Database from PHP</li></ul>



<p><a><strong>Introducing PDO</strong></a></p>



<ul class="wp-block-list"><li>Connecting to the Database</li><li>Book Search Demonstration</li><li>Quoting and Input Validation</li><li>Mysqli</li></ul>



<p><a><strong>Doing More with the Database</strong></a></p>



<ul class="wp-block-list"><li>Using Prepared Statements</li><li>Non-queries and Summary Functions</li><li>Creating and Using Stored Procedures and Functions</li></ul>



<p><a><strong>Maintaining State in Web Applications</strong></a></p>



<ul class="wp-block-list"><li>The Problem of Maintaining State</li><li>PHP Sessions</li><li>Using Hidden Fields</li><li>Using Cookies</li><li>The Library: User Preferences and Shopping Carts</li></ul>



<p><a><strong>RESTfull Web Services With PHP and Laravel</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Course Structure</li><li>What are RESTful Services?</li><li>Demo Overview</li><li>Postman Setup &amp; Demo</li><li>Demo: Course Project</li><li>Refresher on RESTful Services</li><li>Refresher on Laravel &amp; Setting Laravel Up</li><li>Demo: Course Project Setup</li><li>Cross-origin Resource Sharing (CORS)</li><li>Wrap Up</li></ul>



<p><a><strong>Introduction &#8211; Laravel</strong></a></p>



<ul class="wp-block-list"><li>What is Laravel?</li><li>MVC vs Non-MVC</li><li>MVC and the Structure of This Course</li><li>Setting up a Laravel Project</li><li>Understanding the Folder Structure</li><li>A Quick Intro to the Artisan Command Line Interface</li></ul>



<p><a><strong>Views &amp; Blade Templating Engine</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Views and Templating Engines</li><li>Why Use Templating Engines?</li><li>Blade &#8211; Displaying Data and Using Layouts</li><li>Demo:Using Layouts</li><li>Demo:Displaying Data</li><li>Blade &#8211; Partials</li><li>Demo: Partials</li><li>Blade &#8211; Control Stuctures</li><li>Demo: Control Stuctures</li><li>Blade &#8211; XSS Protection</li><li>Demo: XSS Protection</li><li>Facades</li></ul>



<p><a><strong>Working with Routes</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Views and Templating Engines</li><li>Why Use Templating Engines?</li><li>Blade &#8211; Displaying Data and Using Layouts</li><li>Demo:Using Layouts</li><li>Demo:Displaying Data</li><li>Blade &#8211; Partials</li><li>Demo: Partials</li><li>Blade &#8211; Control Stuctures</li><li>Demo: Control Stuctures</li><li>Blade &#8211; XSS Protection</li><li>Demo: XSS Protection</li><li>Facades</li></ul>



<p><a><strong>Handaling Requests &amp; Responses</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Handling Requests and Sending Responses</li><li>Demo: Extracting Data from a GET Request</li><li>Demo: Sending Data to a View</li><li>Handling POST Requests with Dependency Injection</li><li>Dependency Injection vs Facades</li><li>Demo:Using Dependency Injection</li><li>Protecting Against CSRF Attacks</li><li>Demo:CSRF Protection</li><li>Using Sessions to Show Temporary Data</li><li>A Case for User Input Validation</li><li>Demo:Implementing Input Validation</li><li>Demo:Showing Validation Errors</li><li>Demo:Outsourcing Error Messages into Partials</li></ul>



<p><a><strong>Configuration &amp; Environments</strong></a></p>



<ul class="wp-block-list"><li>Configuration and Environments Overview</li><li>Configuring the Database Connection</li></ul>



<p><a><strong>Using Controllers and Models</strong></a></p>



<ul class="wp-block-list"><li>Introduction</li><li>Controllers and Models &#8211; Overview</li><li>Demo:Creating the Post Model</li><li>Demo:Adding Methods to the Model</li><li>Demo: Creating the Post Controller</li><li>Connecting Controller Actions and Routes</li><li>How laravel Finds the Controller</li><li>Alternative Route Syntax</li><li>Demo:Finishing the Post Model</li><li>Demo:Finishing the Controller</li><li>using Validation in Controller</li><li>Finishing the Course Project</li></ul>



<p><a><strong>Databases &#8211; Introduction &amp; Migration</strong></a></p>



<ul class="wp-block-list"><li>Databases Bird&#8217;s Eye Overview</li><li>Migrations Overview</li><li>Creating and Running Migrations</li></ul>



<p><a><strong>Databeses &#8211; Eloquent ORM</strong></a></p>



<ul class="wp-block-list"><li>Understanding Eloquent ORM Models</li><li>Models- Creating and Updating,Introducing Tinker</li><li>Models &#8211; Retrieving Single Model</li><li>Models- Retrieving Multiple Models and Collections Overview</li><li>Models- Using the Query Builder</li><li>Practical &#8211; List of Blog Posts and Single Blog Post</li></ul>



<p><a><strong>Forms(Markup,CSRF,Validation,Errors,Flash Messages,Mass Assignment)</strong></a></p>



<ul class="wp-block-list"><li>Forms Markup</li><li>Cross Site Request Forgery Explained</li><li>Forms &#8211; Storing Submitted Data</li><li>Forms &#8211; Input Validation</li><li>Forms &#8211; Displaying Validation Errors</li><li>Forms &#8211; Form Request Classes</li><li>Session Flash Messages</li><li>Forms &#8211; Old Input Helper</li><li>Forms/Models &#8211; Model Mass Assignment</li></ul>



<p><a><strong>CRUD(Editing,Updating and Deleting)</strong></a></p>



<ul class="wp-block-list"><li>CRUD &#8211; Edit Form</li><li>CRUD &#8211; Update Action</li><li>CRUD &#8211; Deleting Using Forms</li><li>CRUD &#8211; Deleting Models</li></ul>



<p><a><strong>Assets &amp; Styling(Javascript,CSS, Laravel Mix, Bootstrap)</strong></a></p>



<ul class="wp-block-list"><li>Introduction to Laravel Mix</li><li>Installing Bootstrap</li><li>Using NPM and Compiling Assets With Mix/Webpack</li><li>Including Assets in Views</li><li>Versioned Assets(Cache Improvements)</li><li>Introduction to Bootstrap CSS</li><li>Understanding CSS Flexbox in General and in Bootstrap</li><li>Layout Grid and Styling Header Bar</li><li>Styling Forms</li><li>Styling Post List Page</li><li>Styling Single Post Page</li><li>Styling Flash Messages and Error Messages</li></ul>



<p><a><strong>Testing Basics</strong></a></p>



<ul class="wp-block-list"><li>Testing</li><li>Testing configuration and environment</li><li>Writing first function test</li><li>Testing database interactions</li><li>Testing store() action (model creation)</li><li>Testing for failure</li><li>Testing update() action (model updates)</li><li>Testing delete() action (model deletion)</li></ul>



<p><a><strong>One to One Eloquent Relations</strong></a></p>



<ul class="wp-block-list"><li>One to One relation with migration</li><li>One to One assigning relationship</li><li>One to One querying relationship</li></ul>



<p><a><strong>One to Many Eloquent Relations</strong></a></p>



<ul class="wp-block-list"><li>One to Many relation with migration</li><li>One to Many assigning relationship</li><li>One to Many querying relationship</li></ul>



<p><a><strong>Querying Basics</strong></a></p>



<ul class="wp-block-list"><li>Lazy Loading vs Eager Loading</li><li>Querying Relationship existence</li><li>Querying relationship absense</li><li>Counting related models</li><li>Using withCount() in practice (fetching count of comments) with test</li></ul>



<p><a><strong>Model Factories</strong></a></p>



<ul class="wp-block-list"><li>Model Factory Introduction</li><li>Model Factory States</li><li>Model Factory callbacks(afterCreating, afterMaking)</li><li>Application:Implementing comment list</li></ul>



<p><a><strong>Authentication</strong></a></p>



<ul class="wp-block-list"><li>Authentication Overview</li><li>How user registration works in laravel</li><li>Guard component and how logging users in works</li><li>Custom registration from and Auth routes</li><li>Formatting validation errors</li><li>RedirectIfAuthenticated middleware</li><li>Log-in form with &#8220;Remember Me&#8221; feature</li><li>Logging out.@guest directive,debugging CSRF token errors</li><li>Retrieving the currently authenticated user</li><li>Protecting routes(requiring authentication)</li><li>Testing routes that requires</li></ul>



<p><a><strong>Database Seeding</strong></a></p>



<ul class="wp-block-list"><li>Refreshing database, database foreign keys and existing data</li><li>Problem: SQLite test database NOT NULL problem</li><li>Database seeding basics</li><li>Using Model Factory inside Seeder</li><li>Model relations inside seeder</li><li>Individual seeder classes</li><li>Making seeder interactive</li></ul>



<p><a><strong>Deleting Models and Soft Deletes</strong></a></p>



<ul class="wp-block-list"><li>Deleting related model using model events</li><li>Deleting related models using cascading</li><li>Soft deletes</li><li>Soft deletes querying</li><li>Restoring soft deleted model</li><li>Testing soft deleted models</li></ul>



<p><a><strong>Authorization, Policies, Gates</strong></a></p>



<ul class="wp-block-list"><li>Authorization introduction</li><li>Introduction to Gates</li><li>Using authorize() helper</li><li>Verifying permissions of the user</li><li>Admin users and overriding permissions</li><li>Policies introduction</li><li>Policy or Gate?</li><li>Verifying permissions in Blade templates</li><li>Using middleware to authorize routes</li><li>Application: updating tests</li></ul>



<p><a><strong>Query Scopes &#8211; Local &amp; Global</strong></a></p>



<ul class="wp-block-list"><li>Application: setting user_id for the new BlogPost</li><li>Global Query Scopes introduction</li><li>Global Query Scopes and potential issues</li><li>Local Query Scopes introduction</li><li>Practical: Local Query Scope &#8211; most commented posts</li><li>Practical: Local Query Scope &#8211; most active users</li><li>Practical: Local Query Scope &#8211; most active users last month</li><li>Practical: Global Query Scope &#8211; admin can see deleted posts</li></ul>



<p><a><strong>Laravel Blade Components</strong></a></p>



<ul class="wp-block-list"><li>Blade Components introduction</li><li>Component aliases</li><li>Conditional rendering in Component</li><li>Practical: creating reusable component for dates</li><li>Complicated example of conditional rendering</li><li>Application: Fixing an issue with HAVING clause</li></ul>



<p><a><strong>Caching</strong></a></p>



<ul class="wp-block-list"><li>Caching introduction</li><li>Laravel Debugbar</li><li>Storing data in cache</li><li>Removing from cache</li><li>Cache facade</li><li>Practical: using cache as storage</li><li>Practical: using cache for storage implementation</li><li>Using and setting up Redis as cache storage</li><li>Cache tags introduction</li><li>Practical: using cache tags</li></ul>



<p><a><strong>Many to Many Eloquent Relations</strong></a></p>



<ul class="wp-block-list"><li>Caching introduction</li><li>Laravel Debugbar</li><li>Storing data in cache</li><li>Removing from cache</li><li>Cache facade</li><li>Practical: using cache as storage</li><li>Practical: using cache for storage implementation</li><li>Using and setting up Redis as cache storage</li><li>Cache tags introduction</li><li>Practical: using cache tags</li></ul>



<p><a><strong>Reusable Components, query Scopes, Route Model Binding)</strong></a></p>



<ul class="wp-block-list"><li>Practical: User to Comment OneToMany relation and migration</li><li>Practical: comments form and reusable errors component</li><li>Route Model Binding</li><li>Eager loading nested relationships</li><li>Converting repeating queries to query scopes</li></ul>



<p><a><strong>File Storage and Uploading</strong></a></p>



<ul class="wp-block-list"><li>File Storage introduction</li><li>File upload form</li><li>Handling file uploads</li><li>Using Storage facade to store files</li><li>Getting the URL of stored file</li><li>Practical: Image model, OneToOne relation and migrations</li><li>Uploaded image URL</li><li>Practical: Displaying uploaded image and styling</li><li>Deleting files</li><li>Validating uploaded files (size, type, dimensions)</li></ul>



<p><a><strong>One to One Polymorphic Eloquent Relation</strong></a></p>



<ul class="wp-block-list"><li>Section intrduction</li><li>Practical: Scaffolding UserController and UserPolicy, using authorizeResource</li><li>Practical: Views for showing/editing user profile</li><li>OneToOne Polymorphic explained</li><li>OneToOne Polymorphic migration</li><li>OneToOne Polymorphic defining relation</li><li>OneToOne Polymorphic associating</li><li>Practical: OneToOne Polymorphic with BlogPost and Image</li></ul>



<p><a><strong>One to Many Polymorphic Eloquent Relation</strong></a></p>



<ul class="wp-block-list"><li>OneToMany Polymorphic explained</li><li>OneToMany Polymorphic migration &amp; relation</li><li>OneToMany Polymorphic associating</li><li>Practical: OneToMany Polymorphic views</li><li>Practical: Running tests on MySQL database</li><li>OneToMany Polymorphic seeder</li></ul>



<p><a><strong>Why PHP skill is essential for every Software Engineer?</strong></a></p>



<ul class="wp-block-list"><li>PHP is considered one of the easiest scripting languages</li><li>PHP is highly flexible whether it is during an ongoing project or after completing the project.</li><li>Gives Web Developer More Control</li><li>PHP frameworks built-in feature and tools make it easier to protect the web applications from the outer attacks and security threats.</li><li>PHP is also stable as compared to other programming languages. It has been in existence for a long time.</li></ul>



<p></p>



<p></p>



<p>If  you are looking for any institute for PHP with Laravel I&#8217;ll suggest you to go through this <a href="https://www.devopsschool.com/certification/master-in-php-with-laravel.html" target="_blank" rel="noreferrer noopener">Link  </a>.</p>



<p></p>



<p></p>



<p></p>



<p></p>
<p>The post <a href="https://www.aiuniverse.xyz/introduction-of-php-and-laravel/">Introduction of PHP and Laravel</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/introduction-of-php-and-laravel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
