Skip to main content

Posts

Showing posts from October, 2016

GitHub Some Important Command that help you

/* Check the file status */ git status /* This will add your changes to the Staging on your machine */ git add . /* To commit your changes to the local repo */ git commit -m "Your message goes here, always add your message" /* To push the changes to the online repor */ git push origin master /*git reset for resert urlocal code git reset /*confiq margetoll git margetool git marger then composer dump-autoload //create middleware git php artisan make:middleware Admin Git has two modes of how it treats line endings: $ git config core.autocrlf # that command will print "true" or "false" or "input"

what is composer and how install it ?

Introduction # Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. on Commnad Line 1)INSTALL Composer require / Install composer 2)UPDATE Composer update Different libraries install command composer require mauro-moreno/laravel-highcharts composer require barryvdh/laravel-debugbar composer require "illuminate/html":"5.0.*" http://phptrends.com/dig_in/laravel-highcharts http://lavacharts.com/#charts

What is Database ORM ?

Object-relational mapping is a programming technique for converting data between incompatible type systems in relational databases and object-oriented programming languages. This creates, in effect, a "virtual object database" that can be used from within the programming language.