All posts tagged with php

Compact Guide: How to sync Google calendar with Laravel

For proper synchronization of your resources is important to understand the principles of Google API. These principles work the same for all Google resources, but will be different for Outlook. We will figure out how and why to use query parameters and study the best practices.

Custom Auth Driver | Extending Laravel with Managers

Authentication is the initial entry point into applications and the foundation of web application security. Laravel has a solid foundation for creating secure authentication and a large number of already implemented auth drivers. However, the requirements for developers creating complex user access structures, there is a need to create their own login driver. This article is written to help all developers who have encountered the challenge of custom authentication driver in Laravel and describes how to create and integrate them.

Understanding and Overcoming Issues in PHPWord Document Generation

Creating MS Word documents is not an easy task for a programmer, as Word provides a large number of settings that can conflict with code when creating documents dynamically. The main difficulties arise when creating Word from HTML. The customer will demand that the content of the document coincides with what is displayed on the browser screen. And to achieve this result was drunk more than one cup of coffee, spent more than one day in debugging the compatibility of tags in the markup. One of the most popular opensource libraries is PHPWord from PHPOffice. It allows you to read, dynamically create documents in various formats

Laravel Package Development : Key Steps to Building an Effective Tool

You may have already seen or used Laravel packages such as Sanctum, Passport, Nova and many others. But have you ever wondered how you can package and deploy your development into a package, of any logic, and share it with other developers in the Laravel community?

How To Integrate Google Calendar API with Laravel

Many applications need to integrate their application with Google or Outlook calendars. Reasons can be different, such as obtaining free dates for scheduling appointments in CRM or combining several calendars in one application, and others.