Skip to content

Commit

Permalink
fix model path
Browse files Browse the repository at this point in the history
  • Loading branch information
shotadev01 committed Oct 30, 2019
1 parent e3c9843 commit 62631b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/Notifications/ReservationStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace App\Notifications;

use App\User;
use App\Reservation;
use App\Models\User;
use App\Models\Reservation;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
Expand All @@ -20,7 +20,7 @@ class ReservationStore extends Notification
* @return void
*/
public function __construct(
\App\Reservation $reservation
\App\Models\Reservation $reservation
)
{
$this->reservation = $reservation;
Expand Down
6 changes: 3 additions & 3 deletions app/Notifications/ReservationUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace App\Notifications;

use App\User;
use App\Reservation;
use App\Models\User;
use App\Models\Reservation;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
Expand All @@ -20,7 +20,7 @@ class ReservationUpdate extends Notification
* @return void
*/
public function __construct(
\App\Reservation $reservation
\App\Models\Reservation $reservation
)
{
$this->reservation = $reservation;
Expand Down

0 comments on commit 62631b7

Please sign in to comment.