From 492d982f5e1f56c4ddbc25868cba12718e0a4e6b Mon Sep 17 00:00:00 2001 From: LeonvanderHaas <109749285+LeonvanderHaas@users.noreply.github.com> Date: Thu, 21 Jul 2022 17:11:17 +0200 Subject: [PATCH] Update introduction.md Fixed some typos. --- docs/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction.md b/docs/introduction.md index 9a0cea9..d427605 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -3,7 +3,7 @@ title: Introduction weight: 1 --- -This package can automatically discover routes for controllers and views in your Laravel application. This isn't an all-in approach. While using use auto discovery, you can still register routes like you're used to. +This package can automatically discover routes for controllers and views in your Laravel application. This isn't an all-in approach. While using auto discovery, you can still register routes like you're used to. ```php // typically in a routes file @@ -16,7 +16,7 @@ Discover::views()->in($whateverDirectoryYouPrefer); Using PHP attributes you can manipulate discovered routes: you can set a route name, add some middleware, or ... -Here's how you would add middleware to a controller whose's route will be auto discovered. +Here's how you would add middleware to a controller whose route will be auto discovered. ```php namespace App\Http\Controllers;