dadirohan/addition-package

The skeleton application for the Laravel framework.

Maintainers

Package info

github.com/RohanVirtual/AdditionPackage

Type:project

pkg:composer/dadirohan/addition-package

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-main 2025-09-22 11:31 UTC

This package is not auto-updated.

Last update: 2026-03-24 12:10:13 UTC


README

Laravel Logo

  • Install this package for addition of 2 numbers
  • Then you should use example
<?php

use Illuminate\Support\Facades\Route;
use dadirohan\SimpleMath\SimpleMathService;

Route::get('/sum', function(SimpleMathService $math) {
    return $math->add(3, 4); 
});