dadirohan/addition-package

The skeleton application for the Laravel framework.

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/dadirohan/addition-package

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

This package is not auto-updated.

Last update: 2026-01-13 11:06:35 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); 
});