Commit 1f7501b2 by Angel MAS

first commit

parents
# test-package
{
"name": "onestartup/calculator",
"description": "making a first package",
"type": "library",
"license": "Apache 2",
"authors": [
{
"name": "Angel MAS",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {}
}
<?php
namespace Onestartup\Calculator;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class CalculatorController extends Controller
{
public function add($a, $b){
$result = $a + $b;
return view('calculatorio::add', compact('result'));
}
public function subtract($a, $b){
echo $a - $b;
}
}
<?php
namespace Onestartup\Calculator;
use Illuminate\Support\ServiceProvider;
class CalculatorServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
include __DIR__.'/routes.php';
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
$this->app->make('Onestartup\Calculator\CalculatorController');
$this->loadViewsFrom(__DIR__.'/views', 'calculatorio');
}
}
<?php
Route::get('calculator', function(){
echo 'Hello from the calculator package!';
});
Route::get('add/{a}/{b}', 'Onestartup\Calculator\CalculatorController@add');
Route::get('subtract/{a}/{b}', 'Onestartup\Calculator\CalculatorController@subtract');
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
</head>
<body>
<h1 style="text-align:center">
Your Result
<span style="font-weight:normal">{{ $result }}</span>
</h1>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment