Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincrozat committed Oct 10, 2023
1 parent d3786c2 commit 1a32a13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace App\Http\Controllers;

use Illuminate\View\View;
use App\Facades\Posts;
use Illuminate\View\View;

class HomeController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ListPostsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace App\Http\Controllers;

use Illuminate\View\View;
use App\Facades\Posts;
use Illuminate\View\View;

class ListPostsController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ShowPostController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace App\Http\Controllers;

use App\Facades\Posts;
use Illuminate\View\View;
use App\Jobs\TrackPageView;
use App\Facades\Posts;

class ShowPostController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace App\Models;

use Filament\Panel;
use App\Models\Concerns\LogsActivity;
use App\Presenters\UserPresenter;
use App\Models\Concerns\LogsActivity;
use Illuminate\Notifications\Notifiable;
use Filament\Models\Contracts\FilamentUser;
use Illuminate\Database\Eloquent\Relations\HasMany;
Expand Down

0 comments on commit 1a32a13

Please sign in to comment.