CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

27 March, 2023

How to choose between APM and an end-to-end monitoring tool

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 There was a time when APM was all anyone needed. Older monolithic web services were monitored with application performance monitoring (APM) tools. These tools provide detailed insights into how the web service performs and can alert administrators to potential issues before they become widespread. So APM brought us out of the era of having your...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Dispatcher – Laravel scheduled tasks

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Dispatcher is a Laravel artisan command scheduling tool used to schedule artisan commands within your project so you don’t need to touch the crontab.This sounds brilliant for shared hosts and on-premise apps. I can think of a few situations where I’ve needed th...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Generate Migrations from an existing database

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Generate Laravel Migrations from an existing database, including indexes and foreign keys!This looks great. I’ve been working on a side project that was developed with another framework and it didn’t have any migrations. I started fresh with new migrations on a separate database. Then the plan is to build an artisan command to sync the data once...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel DB Normalizer

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 This Laravel package allows you to easily swap out your repository implementations, by providing a unified interface to your database resul...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Baum – Create Nested Sets with Eloquent

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Baum is an implementation of the Nested Set pattern for Laravel 4’s Eloquent ORM.In the past I haven’t been a fan of nested sets because of the complexity involved in working with them. This looks to help alleviate a lot of the pa...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel Package Installer

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Are you tired of manually editing your config/app.php to add service providers and aliases? If so Ryan has your back: " "" "> " "";">This package allows for quick and easy installation of supported Laravel 4 packages. This packages installs packages and adds any necessary ServiceProviders and Aliases.The only...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Revisionable now supports being used as a trait

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Another hugely request and major update to revisionable, to allow using it as a trait. Which means it can now be used in conjunction with other eloquent based packages like Ardent. While still catering for backwards compatibility for sites on PHP < ...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel Generators

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Jeff Way just announced v2: " "" "> " "";">Update your Laravel 4 generators package to 2.0. Big rewrite, with bunches of tests. https://t.co/cPnpJIiYJc— Laracasts (@laracasts) March 3, 2014These generators are one of the first things you should install when starting an application. So handy and so...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Announcing Cashier

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 How painful is billing? To be honest I find all billing systems rather cumbersome and dreadful. Granted they have improved over the old days when all you had to choose from was Paypal and Authorize.net but even today none of them are super clear and always a pain to setup.Taylor just released a brand new Laravel package named Cashier to...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel Storage

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 A simple filesystem abstraction package for Laravel 4.This looks really nice on the surface. I haven’t had a chance to use it but have an app I’m working on now that needs exactly what this includes. Glad to see the API on this so simple:Storage::upload($_FILE['avatar'], 'user/avatar.jpg');That’s the way it should ...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

RoboTask – PHP task runner

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Modern and simple PHP task runner inspired by Grunt and Rake aimed to automate common tasksLooking at the list of tasks it seems like it has all the basics in place for a useful to...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel Blade on Steroids

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Lots of cool extensions to Blade to help with common tasks. The Automatic command generation stuff is interesti...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

PHP Variables to JavaScript

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Often, you’ll find yourself in situations, where you want to pass some server-side string/array/collection/whatever to your JavaScript. Traditionally, this can be a bit of a pain – especially as your app grows.This is a new package from Jeffrey Way at Laracasts that will allow you to easily pass php variables to your JavaScript.This...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Foreman – scaffolding your Laravel applications

 Programing Coderfunda     March 27, 2023     Laravel, Packages     No comments   

 Brian Webb: " "" "> " "";">Foreman is a Laravel application scaffolding tool that automates common tasks you typically perform with each new Laravel app you create. The directives you want Forman to perform are outlined in a JSON based template file.This seems like a neat utility. Brian shows a more real world...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Meta

Popular Posts

  • Features CodeIgniter
    Features CodeIgniter There is a great demand for the CodeIgniter framework in PHP developers because of its features and multiple advan...
  • Laravel Breeze with PrimeVue v4
    This is an follow up to my previous post about a "starter kit" I created with Laravel and PrimeVue components. The project has b...
  • Fast Excel Package for Laravel
      Fast Excel is a Laravel package for importing and exporting spreadsheets. It provides an elegant wrapper around Spout —a PHP package to ...
  • Write API Integrations in Laravel and PHP Projects with Saloon
    Write API Integrations in Laravel and PHP Projects with Saloon Saloon  is a Laravel/PHP package that allows you to write your API integratio...
  • Send message via CANBus
    After some years developing for mobile devices, I've started developing for embedded devices, and I'm finding a new problem now. Th...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (68)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • September (100)
  • August (50)
  • July (56)
  • June (46)
  • May (59)
  • April (50)
  • March (60)
  • February (42)
  • January (53)
  • December (58)
  • November (61)
  • October (39)
  • September (36)
  • August (36)
  • July (34)
  • June (34)
  • May (36)
  • April (29)
  • March (82)
  • February (1)
  • January (8)
  • December (14)
  • November (41)
  • October (13)
  • September (5)
  • August (48)
  • July (9)
  • June (6)
  • May (119)
  • April (259)
  • March (122)
  • February (368)
  • January (33)
  • October (2)
  • July (11)
  • June (29)
  • May (25)
  • April (168)
  • March (93)
  • February (60)
  • January (28)
  • December (195)
  • November (24)
  • October (40)
  • September (55)
  • August (6)
  • July (48)
  • May (2)
  • January (2)
  • July (6)
  • June (6)
  • February (17)
  • January (69)
  • December (122)
  • November (56)
  • October (92)
  • September (76)
  • August (6)

Loading...

Laravel News

Loading...

Copyright © 2025 CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda