type function in python

The type() function is mostly used for debugging purposes. Two different types of arguments can be passed to type() function, single and three arguments. If a single argument type(obj) is…

0 Comments

PHP – The final Keyword

Final methods: When a method is declared as final then overriding on that method can not be performed. Methods are declared as final due to some design reasons. Method should not…

0 Comments

Orderby in laravel

Sometimes we need to use orders to get the data from database like order by date order name order by create extra. In this snippet, we’re using Laravel Eloquent to fetch…

0 Comments