Skip to content

Commit

Permalink
Livewire V3.
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelElrafa committed Sep 1, 2023
1 parent 57e2e2d commit 66258e4
Show file tree
Hide file tree
Showing 64 changed files with 1,857 additions and 5,722 deletions.
1 change: 0 additions & 1 deletion .bladeignore

This file was deleted.

4 changes: 1 addition & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ PUSHER_PORT=443
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=mt1

VITE_APP_NAME="${APP_NAME}"
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_HOST="${PUSHER_HOST}"
VITE_PUSHER_PORT="${PUSHER_PORT}"
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

# Comma separated list of emails
FILAMENT_LOCAL_LOGIN_EMAILS=""

# Docs to set up in production: https://github.com/JosephSilber/page-cache
CACHE_RESPONSE=false
4 changes: 2 additions & 2 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
- name: "checkout repository"
uses: actions/checkout@v3

- name: "setup node v18.15.0"
- name: "setup node v20.5.1"
uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.5.1
cache: 'npm'

- name: "install node dependencies"
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/public/build
/public/hot
/public/storage
/public/sitemap.xml
/public/page-cache
/storage/*.key
/vendor
Expand All @@ -18,4 +17,5 @@ npm-debug.log
yarn-error.log
/.fleet
/.idea
/.vscode
/.history
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.15.0
v20.5.1
4 changes: 2 additions & 2 deletions app/Console/Commands/GenerateSitemap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace App\Console\Commands;

use App\Support\Type;
use Illuminate\Console\Command;
use Spatie\Sitemap\SitemapGenerator;

Expand All @@ -26,8 +27,7 @@ class GenerateSitemap extends Command
*/
public function handle(): void
{
$appUrl = config('app.url');
assert(is_string($appUrl));
$appUrl = Type::string(config('app.url'));

SitemapGenerator::create($appUrl)
->writeToFile(public_path('sitemap.xml'));
Expand Down
14 changes: 0 additions & 14 deletions app/Data/ContactFormSubmissionData.php

This file was deleted.

20 changes: 1 addition & 19 deletions app/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,7 @@
class Handler extends ExceptionHandler
{
/**
* A list of exception types with their corresponding custom log levels.
*
* @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*>
*/
protected $levels = [
//
];

/**
* A list of the exception types that are not reported.
*
* @var array<int, class-string<\Throwable>>
*/
protected $dontReport = [
//
];

/**
* A list of the inputs that are never flashed to the session on validation exceptions.
* The list of the inputs that are never flashed to the session on validation exceptions.
*
* @var array<int, string>
*/
Expand Down
96 changes: 0 additions & 96 deletions app/Filament/Resources/AdminUserResource.php

This file was deleted.

11 changes: 0 additions & 11 deletions app/Filament/Resources/AdminUserResource/Pages/CreateAdminUser.php

This file was deleted.

37 changes: 0 additions & 37 deletions app/Filament/Resources/AdminUserResource/Pages/EditAdminUser.php

This file was deleted.

22 changes: 0 additions & 22 deletions app/Filament/Resources/AdminUserResource/Pages/ListAdminUsers.php

This file was deleted.

98 changes: 0 additions & 98 deletions app/Filament/Resources/UserResource.php

This file was deleted.

11 changes: 0 additions & 11 deletions app/Filament/Resources/UserResource/Pages/CreateUser.php

This file was deleted.

Loading

0 comments on commit 66258e4

Please sign in to comment.