Laravel 5.5 - Social Auto Posting By toolkito/larasap

Today, we are sharing with you how to post text or midea(videos) in social portal. like facebook, twitter and telegram. we are finding one awesome laravel package for this you can do this things by toolkito/larasap This is a Laravel package to post your content to social networks such: Telegram Channel (‌Based on Telegram Bot API) Twitter Facebook Features: Simple. Easy to use. Send text message to Telegram channel Send photo to Telegram channel Send audio to T.....

Continue reading By : Laravelcode January 14, 2018 Category 46759 views

How To Create Custom Helper In Laravel 5.5

Today in this article we are share with you how to make custom helper in laravel. you need some time make your own custom helper for some repeted code or logic. like get fullname of current user. convert currency helper, number formate etc... So, you can create above all logic in one time in one helper function then you can use this custom helper function in everywere in laravel application. you use this custom helper in your laravel blade file and also use in any controller. in this artic.....

Continue reading By : Laravelcode January 13, 2018 Category 78952 views

Laravel 5.5 - Delete Confirm Bootstrap jQuery Model

Hello, everyone in this article we are share with you how to delete records in laravel with bootstrap confirm model. when we are want delete any entry or records in laravel it's very simple but delete with confirm model it is some hard for some laravel developers. In this article we are write one jquery delete snippet code which you can use in entiry all application. no need to all time write saperate code for it. Why Confirm Model Required? Confirm model is required in big project .....

Continue reading By : Laravelcode November 7, 2017 Category 78165 views

Laravel 5.5 - VueJS 2.0 CRUD Operations

Today, we are share with you VueJS 2.0 CRUD (insert, update, delete and listing) oparation in laravel 5.5, we all are known laravel 5.5 and VueJS 2.0 is best combination for development any web application. in this article we are show you how to make laravel 5.5 and VueJS 2.0 crud in step by step don't warry if you are beginner, intermediate or expert in laravel or VueJS. simply follow this all step any easyly make VueJS 2.0 CRUD with laravel 5.5 Before starting vuejs crud with laravel yo.....

Continue reading By : Laravelcode November 4, 2017 Category 132365 views

Ajax CRUD example in Laravel 5.5 application

Hello, everyone in this post we are share with you how to make simple ajax crud in laravel application from the scratch. we all are love our application is runing simple and fast without loading page when we are make any action. so, you can done this in laravel using ajax. In this post we are share simple insert update delete and listing oparation using ajax in laravel application but you can done any type of oparation and action with ajax. if you want your application run without page loadin.....

Continue reading By : Laravelcode October 26, 2017 Category 260587 views

Laravel 5.5 - How To Make cURL HTTP Request Example

Today, we are share with you how to make cURL HTTPs request in your laravel application. in many time you need to integrate any third party APIs in your laravel application. your can done this with cURL or HTTP guzzle request. but cURL is so simple and not take much time make get or post HTTP APIs request. Make GET Request $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://example.com", CURLOPT_RETURNTRANSFER => true, CURLOPT_.....

Continue reading By : Laravelcode October 17, 2017 Category 362328 views