Extend incoming for better usage.
This commit is contained in:
17
app/Http/Controllers/Api/SupplierController.php
Normal file
17
app/Http/Controllers/Api/SupplierController.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Api;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Supplier;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class SupplierController extends Controller
|
||||
{
|
||||
public function index(): JsonResponse
|
||||
{
|
||||
$suppliers = Supplier::orderBy('name')->get();
|
||||
return response()->json($suppliers);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -22,6 +22,19 @@ class Incomingtax extends Model
|
||||
'currency',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that are appended with attribute getters.
|
||||
*
|
||||
* @var string[]
|
||||
*/
|
||||
protected $appends = [
|
||||
'gross',
|
||||
];
|
||||
|
||||
public function getGrossAttribute() {
|
||||
return number_format($this->taxable_amount + $this->amount, 2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the incoming invoice this tax belongs to.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user