In this tutorial, i would like to share with you how to build restful api in laravel 5.5 application. Here i will share with you create basic and simple resource api route with json response. you can simply use with your big project, you can make basic setup for you application. Before ...
Laravelcomes with built-in tools to automate and simplify the migration process. In this guide, we’ll go in-depth on how to create, run, and manage migrations inLaravel applications. If you’re just getting started with Laravel but still want to try out ButterCMS, check out ourLaravel st...
Laravelis a powerful PHP framework that offers a clean and expressive syntax for web development. Controllers play a critical role in Laravel by handling the logic of your application, responding to user actions, and returning appropriate responses. In this guide, we’ll explore how to effectively...
In Laravel 5 REST API project sometime we need to create create our own custom header for security. like : 'X-hardik':'123456'. this was example, that means in your current project your every request with pass your own custom header like i give you example.this custom he...
Lara Clientis aLaravelpackage that simplifies the process of working withmultiple APIs in Laravelby allowing developers to set up API connections in a central configuration file, specifying the base URI, API key, and other settings for each connection. The package also includes a cache layer to ...
i want to serve a live video streaming in a Laravel website of CC Camera. User have to provide the IP address of the CC Camera, then streaming start in the site. for this task , i have to use Real Time Streaming Protocol. i will take the IP and generate a HTML code, how to use...
I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency. Follow Me: Subscribe me on: Youtube We are Recommending you How to Call External API in Laravel? Larave...
There are two ways with which we can access config variables present in our config file. The first method we will talk about is using Laravel’s built-inConfigfacade. TheConfigFacade To get the option in our config file, we call a staticgetmethod on theConfigfacade. To get the value, ...
Laravel Backpack is one of the most powerful admin panels for building your custom project. Laravel 11, combined with Laravel Backpack...
we can make is usingUser::findOrFail()instead of justfind()- then if user is not found, Laravel would show 404 page with text"Sorry, the page you are looking for could not be found.". But this is a default 404 page for the whole project, so not massively helpful to user, is it...