34 lines
652 B
PHP
34 lines
652 B
PHP
<?php
|
|
|
|
namespace App\Widgets;
|
|
|
|
use Arrilot\Widgets\AbstractWidget;
|
|
use App\Models\Banking\Account;
|
|
|
|
class AccountBalance extends AbstractWidget
|
|
{
|
|
/**
|
|
* The configuration array.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $config = [
|
|
'width' => 'col-md-4'
|
|
];
|
|
|
|
/**
|
|
* Treat this method as a controller action.
|
|
* Return view() or other content to display.
|
|
*/
|
|
public function run()
|
|
{
|
|
//
|
|
$accounts = Account::enabled()->take(5)->get();
|
|
|
|
return view('widgets.account_balance', [
|
|
'config' => (object) $this->config,
|
|
'accounts' => $accounts,
|
|
]);
|
|
}
|
|
}
|