How to create a laravel hashed password

 Laravel old$password = 'JohnDoe'; $hashedPassword = Hash::make($password); echo $hashedPassword; // $2y$10$jSAr/RwmjhwioDlJErOk9OQEO7huLz9O6Iuf/udyGbHPiTNuB3IuySo, you’ll insert the $hashedPassword into database. Hope, it’s clear now and if still you are confused then i suggest…

Symfony bundle,component,service ve flex nedir?

Bundle : Symfony uygulamasında kullanılmak üzere yazılmış bir kod ve diğer dosyalar koleksiyonu. mesela sonata admin gibi Component:herhangi bir frameworke ihtiyaç olmadan kendi uygulmasınızı yazabileceğiniz kütüphaneler diyebilir, httpfoundation,form gibi http://symfony.com/doc/current/components/index.htmlhatta…

Doctrine tricks

php bin/console doctrine:schema:update –forceError SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytesconfigpackagesdoctrine.yaml  içinde bunucharset: utf8mb4collate: utf8mb4_unicode_cibununla değiştir.        …

Laravel array_get() Helper Function

Dizi dizininin tanımlanıp tanımlanmadığını kontrol etmek için her zaman isset () kullanmak zorunda kalmaktan yorulduysanız böyle bir laravelde bulunan alternatif fonksiyonu kullanabilirsiniz.Bunu kendime not almak için yazdım aslında function array_get($array, $key,…

Genel Docker Hataları

ERROR: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connectionbu hata firewall yada güvenlikle ilgili bişey bağlantıya izin vermiyor olduğu için olur , firewall u geçiçi süre kapatın , sonra docker-machine…

Video tutorial archive

Androidhttps://vimeo.com/album/4150842Node.jshttps://vimeo.com/album/4154782Web Application Penetration Testinghttps://vimeo.com/album/4644771Performance Testinghttps://vimeo.com/album/4705487React Native and Prisma GraphQL eCommerce Project https://www.youtube.com/playlist?list=PLN3n1USn4xlmqhVdKMurNREwtiUpq-SFy

React Native Notları

react-native init MyApp prompt: Directory MyApp already exists. Continue?:  (no) I am typing - yes npm install [all dependencies] react-native link just go to cloned app directory XYZApp and donpm…

Magento admin gride yeni alan eklemek

Öncelikle eğer erp / muhasebe gibi bir sistem yazıyorsanız mutlaka magento nun kodlarını incelemenizi tavsiye ederim , daha önce ERP ve muhasebe projelerinde yer aldığım için orada spagetti olmuş, sürekli…

Elastic Search Notları

TÜm indexleri silmek  curl -XDELETE ‘http://localhost:9200/*’ #delete index: curl -XDELETE 'localhost:9200/index_name' #delete all indices:  curl -XDELETE 'localhost:9200/_all' #delete document :  curl -XDELETE 'localhost:9200/index_name/type_name/document_id’ sudo service elasticsearch statuscurl -XGET "http://localhost:9200/_cluster/health?pretty=true"curl "localhost:9200/_nodes/settings?pretty=true"Elastic Ubuntu remove sudo apt-get –purge autoremove elasticsearchsudo rm -rf…