Tutorials

Category

26 posts found

18 May 2019
0.55K
No Comments

It is very important to create a unique identity. Your identity is what helps people identify you in the midst of the crowd. The reason you work on your attitude, behavior and personality is to ensure it is the best for you, people around you and it helps people identify

Post in

19 Apr 2019
0.41K
No Comments

The default Laravel Application is intended to provide a great starting point for both large and small applications, and also for ecommerce development, for ecommerce development company and has become the go-to framework for people all over the world. It has robust technical capabilities, and is a leader on the

Post in

17 Mar 2019
2.93K
No Comments

New version 7.2 of PHP is little bit restrict for calling functions and passing parameters, now count() function will only count variable and it will thrown an error when parameter is not array. Here is quick fix I have create my own function for counting array or object and it

Post in

13 Mar 2019
1.36K
No Comments

Before adding your custom functions helper or library to project. Laravel have set most of useful function in helper. Read Laravel’s pre-defined functions in helper https://laravel.com/docs/helpers So let’s start to add custom function library or helper to your project. Create directory helpers in “LaravelProject\app\Http” Create function helper file “func_helper.php” in

Post in

11 Mar 2019
0.92K
No Comments

WordPress a Content Management System (CMS). It is commonly associated with the idea of a blog service, but it is actually much more than that! This platform makes it possible to build robust and fully functional web sites, and to reach almost any level of complexity. The security of a

Post in

1 Mar 2019
0.73K
No Comments
PHP Latest Trends in 2019

When people talk about PHP, they can’t help but mention the W3Tech statistics. PHP is popular and is known to be used by 78.9% of all the websites worldwide. To this day, the use PHP tends to be slowly deteriorating when it’s compared to its 85% usage globally just 2

Post in

26 Feb 2019
1.71K
No Comments

Laravel treat DateTime Class into his own class library and then its call from Laravel classes. So you have you change it from and just add backslash \ before DateTime class

Post in

14 Jul 2018
3.4K
2 Comments
Laravel 5 upload files to Dropbox free storage

Some of Storage services are not free like amazon s3 or cloud, and I was also wanted to get free storage, I found #Dropbox which is providing 5GB free space. Before starting this tutorial you must have following requirements. Requirements PHP version 7.1 or 7.2 or 7.+ Laravel latest framework

Post in

10 Jul 2018
0.46K
No Comments

I need that function to delete 10 minutes old files from my project, remove_x_minutes_old_files function required two parameters $path for directory path and $in_minutes for minutes how much old file you want to delete

Post in

15 May 2018
1.33K
No Comments
PHP Cli Create zip file with password – 7zip

You cannot create zip file with password in php unless update php version from older to new atleast php 7.2. The following is best solution to create zipfile with password through 7zip or any other exe file with #cli command. Create zip file with password in command line interface (CLI).

Post in