Tp1view 1
Tp1view 1
Tp1view 1
PS C:\laraveldev201> cd C:\laraveldev201\ayalaravel
PS C:\laraveldev201\ayalaravel> php artisan make:controller GestionController
>>
2-
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\View;
3-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Calcul de photocopies</title>
</head>
<body>
<h1>Calcul de photocopies</h1>
//route:
use App\Http\Controllers\GestionController;
4-
// routes/web.php
use App\Http\Controllers\GestionController;