Hot Fix for CORS issue

Cross-Origin Resource Sharing (CORS) is a standard that allows a server to relax the same-origin policy. This is used to explicitly allow some cross-origin requests while rejecting others.For example, if a site offers an embeddable service, it may be necessary to relax certain restrictions. Setting up such a CORS configuration isn’t necessarily easy and may present some …

Introduction about Netlify

Build, deploy, and managemodern web projects An all-in-one workflow that combines global deployment, continuous integration, and automatic HTTPS. And that’s just the beginning. Go beyond static Nail the fundamentals with rock-solid deployment Deploy to a redundant network of servers with built‑in continuous integration and HTTPS. Add dynamic functionality with built‑in applications Manage user identity, HTML forms, and even …

zencorder

It is a PHP library which provides video processing functionalities(similiar to ffmpeg) You can encode videos by this library. For example: Imagine you are going to extract thumbnails and create a preview when uploading a video on your php project. In the case, you can use this library https://github.com/zencoder/zencoder-php

Laravel Polymorphic Relationships

A polymorphic relationship allows the target model to belong to more than one type of model using a single association. One To One (Polymorphic) Table Structure A one-to-one polymorphic relation is similar to a simple one-to-one relation; however, the target model can belong to more than one type of model on a single association. For …