2022-06-14 06:55:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
use App\Models\Cost;
|
|
|
|
|
|
|
|
class CostController extends Controller
|
|
|
|
{
|
|
|
|
public function home(Cost $o)
|
|
|
|
{
|
2022-06-14 07:03:58 +00:00
|
|
|
// @todo Need to add the services that are active that are not on the bill for the supplier.
|
2022-06-14 06:55:17 +00:00
|
|
|
return view('a.cost.home',['o'=>$o]);
|
|
|
|
}
|
|
|
|
}
|