Eky-Michael
Eky-Michael
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
Thank you, I was getting crazy 🙂 Have a great day
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
No description
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
Thank you
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
After restarting my computer + php artisan config:cache
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
ok, I'll do that
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
I added Modell::unguard(); and then commented it as it was throwing some error.
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Model;

class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}

/**
* Bootstrap any application services.
*/
public function boot(): void
{
// Modell::unguard();
}
}
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Model;

class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}

/**
* Bootstrap any application services.
*/
public function boot(): void
{
// Modell::unguard();
}
}
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
I did and restrted artisan serve but nothing changes, sorry..
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
I just added this in my web.php but it does not work, same error
<?php

use Illuminate\Support\Facades\Route;

Route::get('/test', function () {
return view('welcome');
});
<?php

use Illuminate\Support\Facades\Route;

Route::get('/test', function () {
return view('welcome');
});
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
Can my Models create the issue ?
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
No description
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
providers.php
<?php

return [
App\Providers\AppServiceProvider::class,
App\Providers\Filament\AdminPanelProvider::class,
];
<?php

return [
App\Providers\AppServiceProvider::class,
App\Providers\Filament\AdminPanelProvider::class,
];
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
No description
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
yes 🙂
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
I tried to re install 3 times from scratch... other Lavaler apps are working fine on my local. Thank you Denis for your help
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
No description
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
composer.json
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.2",
"filament/filament": "^3.2",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.9"
},
"require-dev": {
"doctrine/dbal": "^3.8",
"fakerphp/faker": "^1.23",
"laravel-shift/blueprint": "^2.10",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.3",
"spatie/laravel-ignition": "^2.4"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.2",
"filament/filament": "^3.2",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.9"
},
"require-dev": {
"doctrine/dbal": "^3.8",
"fakerphp/faker": "^1.23",
"laravel-shift/blueprint": "^2.10",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.3",
"spatie/laravel-ignition": "^2.4"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
No description
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
with artisan serve
61 replies
FFilament
Created by Eky-Michael on 4/20/2024 in #❓┊help
404 NOT FOUND after initial Filament install
Sonoma 14.1.1, with M1 chip
61 replies