How to Fix PHP Extension Fileinfo is Missing in Laragon

laravel 8

When I tried to install a new fresh Laravel 5.7.12 this morning  using CMDer in my Laragon, I encountered this error message:

Problem 1

  • Installation request for league/flysystem 1.0.48 -> satisfiable by league/flysystem[1.0.48].
  • league/flysystem 1.0.48 requires ext-fileinfo * -> the requested PHP extension fileinfo is missing from your system.

Problem 2

  • league/flysystem 1.0.48 requires ext-fileinfo * -> the requested PHP extension fileinfo is missing from your system.
  • laravel/framework v5.7.12 requires league/flysystem ^1.0.8 -> satisfiable by league/flysystem[1.0.48].
  • Installation request for laravel/framework v5.7.12 -> satisfiable by laravel/framework[v5.7.12].

So how to fix this PHP Extension Fileinfo is missingContinue reading “How to Fix PHP Extension Fileinfo is Missing in Laragon”

Pengalaman Berjimba Bersama Laravens di Laratalks #2

laravel 8

Pada Khamis yang lalu, aku berkesempatan menyertai sesi sembang Laravel yang dianjurkan oleh Laravens bertempat di pejabat KERN Technology, Damansara. Meriah betul sesi sembang Laravel ni.

Apa yang menarik?

laratalks-pisyek-02

Laratalks tersebut merupakan penganjuran kali yang kedua. Kali pertama dulu aku tak sempat nak join. Nasib baik yang kedua ni diberikan kesempatan oleh yang Maha Esa untuk join. LOL. Tiga penceramah telah dijemput untuk berkongsi mengenai Laravel. Continue reading “Pengalaman Berjimba Bersama Laravens di Laratalks #2”

Create a room booking system with Laravel and FullCalendar – Part 3

laravel 8

Hello readers! Long time no see on my Laravel tutorial series. So today I will continue on one of the most viewed tutorial on my blog; Creating a Laravel Room Booking System with FullCalendar.

This is not exactly a tutorial, but more on product review. I managed to take my existing laravel booking system to a whole new level. You can register yourself at the demo or use admin login as follows:

Email: superadmin at pisyek dot com, Pwd: password

Some of the available features are:  Continue reading “Create a room booking system with Laravel and FullCalendar – Part 3”

My Complete Laravel CMS Collection List

laravel 8

Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern. It is the best PHP framework for 2015 according to Sitepoint survey.

This is me, trying to do a complete list for Laravel CMS which exists on the internet for my personal reference in the future. You may suggest for me to add if yours is not listed here.

My Complete Laravel CMS Collection List: Continue reading “My Complete Laravel CMS Collection List”

Create a room booking system with Laravel and FullCalendar – Part 2

laravel 8

For the second part on how to create a room booking system with Laravel and FullCalendar tutorial, we will be focusing on the front-end. You may refer to the part 1 on how to install and configure Laravel for this project.

I’m suggesting that you download the code first so that you can refer the details in the php files, line by line. Then we need to integrate Bootstrap, FullCalendar and Date Range Picker library into our project. You may view the demo here.

Step 1: Create a folder to store all CSS and JS.

I created an “_asset” folder and put the Bootstrap, FullCalendar and Date Range Picker. I also created a style.css for custom CSS styling for the website. You may also use the CDN version of the libraries instead of hosting the scripts in your server. Continue reading “Create a room booking system with Laravel and FullCalendar – Part 2”