<?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>fremework Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/fremework/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/fremework/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Wed, 16 Mar 2022 05:43:34 +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>Basic Query in Laravel PHP Framework Advance</title>
		<link>https://www.aiuniverse.xyz/basic-query-in-laravel-php-framework-advance/</link>
					<comments>https://www.aiuniverse.xyz/basic-query-in-laravel-php-framework-advance/#respond</comments>
		
		<dc:creator><![CDATA[dharmendra]]></dc:creator>
		<pubDate>Mon, 02 Aug 2021 12:47:15 +0000</pubDate>
				<category><![CDATA[laravel]]></category>
		<category><![CDATA[fremework]]></category>
		<category><![CDATA[Laravel]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Query]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=15225</guid>

					<description><![CDATA[<p>Laravel Database Queries Query 12=>Show or get recently or last 6 data entered by user Three method : first method $dogs = Package::orderBy(&#8216;id&#8217;, &#8216;desc&#8217;)->take(5)->get(); return $dogs; Second <a class="read-more-link" href="https://www.aiuniverse.xyz/basic-query-in-laravel-php-framework-advance/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/basic-query-in-laravel-php-framework-advance/">Basic Query in Laravel PHP Framework Advance</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading">Laravel Database Queries</h3>



<h3 class="wp-block-heading">Query 12=>Show or get recently or last 6 data entered by user</h3>



<p><strong>Three method : first method</strong></p>



$dogs = Package::orderBy(&#8216;id&#8217;, &#8216;desc&#8217;)->take(5)->get();
		return $dogs;




<p>Second Method </p>



$dogs = Package::latest()->take(5)->get();
      return $dogs;




<p>third Method</p>



 $dogs= Package::orderBy(&#8216;id&#8217;, &#8216;DESC&#8217;)->limit(5)->get();
		return $dogs;




<h3 class="wp-block-heading">Query 13=>Get all data except skip 4 first data which is added by tour Operator</h3>



<script src="https://gist.github.com/dharmu9898/14192d02c8afb67efb283e78d1c5121f.js"></script>



<h3 class="wp-block-heading">Query 14=>Get single data which trip is recently added by Tour Operator</h3>



<script src="https://gist.github.com/dharmu9898/e5f45139e8a48c8e0d544a0d05e10d7a.js"></script>



<h3 class="wp-block-heading">Query 15=>Get single data which trip is recently added by Tour Operator and email is Dharmendra.cotocus@gmail.com</h3>



<script src="https://gist.github.com/dharmu9898/bb3ad5742445ee01b23ced54cdf7df97.js"></script>



<h3 class="wp-block-heading">Query 16=>Get trip detail, image detail iternary detail wich following details </h3>



<ol class="wp-block-list"><li>Publish trip and email is ajay.cotocus@gmail.com</li><li>Publish trip and email is dharmendra.cotocus@gmail.com</li><li>Publish trip and email is vijay.cotocus@gmail.com</li></ol>



<script src="https://gist.github.com/dharmu9898/2658feab24b6926f6333d2de1fa3f2ce.js"></script>



<h3 class="wp-block-heading">Query 16=>Get trip details image  detail  iternary detail with following detail</h3>



<ol class="wp-block-list"><li>The country is india and email dharmendra.cotocus@gmail.com</li><li>  The country is malysia and email  ajay.cotocus@gmail.com</li><li>  The country is india and email vijay.cotocus@gmail.com</li></ol>



<script src="https://gist.github.com/dharmu9898/f6dc248255d30950b207e7b11fc0079b.js"></script>



<p></p>
<p>The post <a href="https://www.aiuniverse.xyz/basic-query-in-laravel-php-framework-advance/">Basic Query in Laravel PHP Framework Advance</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/basic-query-in-laravel-php-framework-advance/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
