2. Service injection (ok)
@inject('metrics', 'App\Services\MetricsService')
<div>
Monthly Revenue: {{ $metrics->monthlyRevenue() }}.
</div>resources\views\child.blade.php@inject('metrics', 'App\User')
<div>
Monthly Revenue: {{ $metrics->find(1) }}.
</div><?php
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\View;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
// Route::get('admin/product/{id}', 'ProductController@getPostDetail');
Route::get('/', function () {
return view('pages/login');
});

Previous1. Laravel cung cấp cho chúng ta thẻ @stack và @pushNextVII. Toàn tập Blade template Laravel (ok)
Last updated