Include graph.js and build some dashboard tiles.
This commit is contained in:
@@ -2,8 +2,10 @@
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use App\View\Composers\MonthGraph;
|
||||
use App\View\Composers\OptionLogo;
|
||||
use App\View\Composers\TaxDropdown;
|
||||
use App\View\Composers\YearGraph;
|
||||
use Illuminate\Support\Facades\URL;
|
||||
use Illuminate\Support\Facades\View;
|
||||
use Illuminate\Support\Number;
|
||||
@@ -36,6 +38,8 @@ class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
View::composer('components.tax-dropdown', TaxDropdown::class);
|
||||
View::composer('components.company-logo', OptionLogo::class);
|
||||
View::composer('components.graph-year', YearGraph::class);
|
||||
View::composer('components.graph-month', MonthGraph::class);
|
||||
Number::useLocale(config('app.locale'));
|
||||
Number::useCurrency(config('app.currency'));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user