From 37ee9ef5c5a2f8ede316c80f871b1338f2862786 Mon Sep 17 00:00:00 2001 From: Justas Raudonius <10882793+justRau@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:04:11 +0200 Subject: [PATCH] Fix two typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5c24807..019681a 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ class User extends Authenticatable implements CanPresent This package gives you an easy way to generate new `Presenter` class, all you need to do is to use `presenter:make` command. ```bash -php artisan presenter:make UserPresneter +php artisan presenter:make UserPresenter ``` `UserPresenter` in our case, leaves by default in `App\Presenters`. @@ -111,7 +111,7 @@ If you want to change the directory, you have two options. First options is to set the full namespace while you're creating the presenter class ```bash -php artisna presneter:make App\Models\Presenter\UserPresenter +php artisna presenter:make App\Models\Presenter\UserPresenter ``` Or change `presenter_namespace` from `config/laravel-presenter` file.