<?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>laravel framework &#8211; Selman Tunc</title>
	<atom:link href="https://selmantunc.com.tr/tag/laravel-framework/feed/" rel="self" type="application/rss+xml" />
	<link>https://selmantunc.com.tr</link>
	<description></description>
	<lastBuildDate>Sat, 30 Jun 2018 19:35:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://selmantunc.com.tr/wp-content/uploads/2023/07/cropped-tumblr_inline_oglumuMbgO1tyldvk_540-150x150-1-32x32.jpg</url>
	<title>laravel framework &#8211; Selman Tunc</title>
	<link>https://selmantunc.com.tr</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to create a laravel hashed password</title>
		<link>https://selmantunc.com.tr/uncategorized/how-to-create-a-laravel-hashed-password/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 30 Jun 2018 19:35:30 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[laravel]]></category>
		<category><![CDATA[laravel framework]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2018/06/30/how-to-create-a-laravel-hashed-password/</guid>

					<description><![CDATA[ Laravel old $password = 'JohnDoe'; $hashedPassword = Hash::make($password); echo $hashedPassword; // $2y$10$jSAr/RwmjhwioDlJErOk9OQEO7huLz9O6Iuf/udyGbHPiTNuB3Iuy So, you’ll insert the $hashedPassword into database. Hope, it’s clear now and if still you are confused then&#8230;]]></description>
										<content:encoded><![CDATA[<h2> Laravel old</h2>
<pre><code>$password = 'JohnDoe';
$hashedPassword = Hash::make($password);
echo $hashedPassword; // $2y$10$jSAr/RwmjhwioDlJErOk9OQEO7huLz9O6Iuf/udyGbHPiTNuB3Iuy</code></pre>
<p>So, you’ll insert the <code>$hashedPassword</code> into database.
Hope, it’s clear now and if still you are confused then i suggest you to
 read some tutorials, watch some screen casts on <a href="http://laracasts.com">laracasts.com</a> and <a href="http://tutsplus.com/">tutsplus.com</a> and also read a book on <code>Laravel</code>, <a href="http://www.thebook-mark.com/laravel-code-bright/">this is a free ebook</a>, you may download it.</p>
<p>Update: Since <code>OP</code> wants to manually encrypt password using Laravel <code>Hash</code> without any class or form so this is an alternative way using <code>artisan tinker</code> from command prompt:</p>
<ol><li>Go to your command prompt/terminal</li>
<li>Navigate to the <code>Laravel</code> installation (your project’s root directory)</li>
<li>Use <code>cd &lt;directory name&gt;</code> and press enter from command prompt/terminal</li>
<li>Then write <code>php artisan tinker</code> and press enter</li>
<li>Then write <code>echo Hash::make('somestring');</code></li>
<li>You’ll get a hashed password on the console, copy it and then do whatever you want to do.</li>
</ol>
<h2>Update (Laravel 5.x):</h2>
<pre><code>// Also one can use bcrypt
$password = bcrypt('JohnDoe');</code></pre>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Codeigniter eksikleri</title>
		<link>https://selmantunc.com.tr/uncategorized/codeigniter-eksikleri/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 26 May 2013 18:12:00 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[laravel]]></category>
		<category><![CDATA[laravel framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php laravel]]></category>
		<guid isPermaLink="false">http://selmantunc.com.tr/2013/05/26/codeigniter-eksikleri/</guid>

					<description><![CDATA[Codeigniter eksikleri CodeIgniter en çok tercih edilen ve hala şu anda hızlı bir şekilde basit web siteleri oluşturmak için en çok tercih edilen PHP framewordür. Sebep olarak, CodeIgniter kullanmak ve&#8230;]]></description>
										<content:encoded><![CDATA[<p><b>Codeigniter eksikleri<br></b>
<br><br><b>CodeIgniter</b> en çok tercih edilen ve hala şu anda hızlı bir şekilde basit web siteleri oluşturmak için en çok tercih edilen PHP framewordür. Sebep olarak, CodeIgniter kullanmak ve anlamak nispeten kolaydır. Dökümantasyonu çok iyidir anlaması kolaydır ve  aynı zamanda kararlı ve birçok kullanıcı tarafından test edilmiş garanti edilebilir , çok büyük bir topluluğu bulunuyor.<br><a name="more"></a>
<br>Karşılaşabileceğiniz herhangi bir sorun büyük olasılıkla zaten bir kişi tarafından çözülmüştür. CodeIgniter’ın gerçekten nasıl kullanılacağını anlamak için PHP OOP ile ilgili bilmeniz gerekenler çok basittir. Diğer frameworklerin aksine kullanmaya başlamak için neredeyse hiç yapılandırma gerektirmez.<br>Geçtiğimiz birkaç ay içinde, <strong>CodeIgniter</strong> öldüğü hakkında bir tartışma  olmuştu. Farklı geliştiricilerin bunun için farklı nedenleri verdi. <strong>Codeigniter</strong> ın PHP5.2 desteklemek niyetinde olduğunu söyleyebilirim<br><br>Ekleme  : codeigniter php 5 .3 destekler durumdadır.<br><br>CodeIgniter dahili kütüphaneleri örneğin belirli işlemleri gerçekleştirmek için template, yetkilendirme (permission,authorization) kütüphanesi gibi kütüphaneleri desteklemez,hariçi olarak eklenir Kütüphaneler singleton ve  magic yöntemi ile yüklenir.<br><br>CodeIgniter ORM yapısını desteklemez, 3 parti olarak yükleyebilirsiniz<br><br>Kod yönetimi açısından, CodeIgniter en kötü performanslı fw olarak kabul edilir.[bu herkese göre değişiklik gösterebilir fakat sadece bildiğiniz CI ise bunu kabul etmezsiniz onun için farklı framework yapılarını incelemenizi tavsiye ederim]<br><br>HMVC yapısı hariçi olarak eklenmekdedir , bunun olmaması sizi birçok açıdan kısıtlamakdadır, fakat bazı kullanıcılar ve projeler içinde gerekli değildir , fakat bir fw  yapısında olması gereklidir.<br><br>Modüler tasarım desenleri eksikliği nedeniyle, CodeIgniter üçüncü parti geliştirici kütüphanelerine güvenmek zorundadır.<br><br>Ayrıca bakınız<br><br><a href="http://mulzer.tumblr.com/post/24141993116/12-reasons-you-should-switch-from-codeigniter-to">http://mulzer.tumblr.com/post/24141993116/12-reasons-you-should-switch-from-codeigniter-to</a>
<br><br><a href="http://www.kalexiko.com/blog/goodbye-to-codeigniter-hello-to-laravel-">http://www.kalexiko.com/blog/goodbye-to-codeigniter-hello-to-laravel-</a>
<br><br><a href="http://www.web-and-development.com/laravel-vs-codeigniter/">http://www.web-and-development.com/laravel-vs-codeigniter/</a>
<br><br><a href="http://www.dcradionetwork.com/internetmarketingradio/PHP-framework-showdown-Codeigniter-vs-Laravel-vs-Symfony2-vs-Zend2-vs-Yii/41">http://www.dcradionetwork.com/internetmarketingradio/PHP-framework-showdown-Codeigniter-vs-Laravel-vs-Symfony2-vs-Zend2-vs-Yii/41</a></p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
