How To Manage DateTime with Carbon in Laravel and PHP
Working with date and time in PHP can be complicated. We have to deal with strtotime, formatting issues, lots of calculations, and more. The Carbon package can help make dealing with…
Working with date and time in PHP can be complicated. We have to deal with strtotime, formatting issues, lots of calculations, and more. The Carbon package can help make dealing with…
Laravel Charts is a charting library for laravel, and it's the only PHP package that's able to generate unlimited combinations of charts out of the box. This is because Chart's…
File uploads is one of the most important functions on the internet, and we have bigger files nowadays, which means it's not enough to have simple input fields - we…
To build a login with a Google account in the Laravel system, we need to have a Gmail email account. This gmail account will help us to create an account…
Authentication is the process of identifying the user credentials. In web applications, authentication is managed by sessions which take the input parameters such as email or username and password, for…
Authentication is the process of identifying the user credentials. In web applications, authentication is managed by sessions which take the input parameters such as email or username and password, for…
A. View.blade.php <?php $count = DB::table('posts')->count(); ?> <section class="bg0"> <div class="row m-rl-0 justify-content-center container verticlescroll" style="border:1px solid #333;"> <div class="col-md-12 p-rl-1 p-b-2 py-3 pkload"> <span class="load-content"></span> </div> <?php if($count >…