Knowledge Base Entries
Title: Laravel Hosting
Content: <a href="https://www.iankumu.com/blog/best-laravel-hosting/">Best Laravel Hosting: A List of the Best Hosting Providers in 2023</a><br>
Title: Laravel Tools
Content: <a href="https://sentry.io/welcome/">Application Performance Monitoring & Error Tracking Software | Sentry</a><br> <a href="https://fly.io/">Deploy app servers close to your users · Fly</a><br>...
Title: Laravel Videos
Content: <a href="https://www.youtube.com/playlist?list=PLqDySLfPKRn7kG-c-YJUQk7mC6bNu8zg6">Laravel videos - YouTube</a><br> <a href="https://www.youtube.com/watch?v=nXPPrLJZlmM&list=PLX4adOBVJXavo3HAHhmf...
Title: Laravel Spatie permissions admin and users
Content: Route::resource('knowledge_base', KnowledgeBaseController::class)->middleware(['auth', 'index' => 'permission:view articles', 'create' => 'permission:create articles', 'stor...
Title: Laravel error after clear cache
Content: php artisan route:clear php artisan cache:clear php artisan config:clear
Title: Laravel Eloquent Query Builder
Content: When to Use Eloquent (ORM) Eloquent is Laravel’s ORM (Object-Relational Mapping), which provides a high-level, object-oriented approach to database interactions. It is more developer-friendly and int...
Title: Laravel Spatie
Content: 1.composer show spatie/laravel-permission 2.php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider" 3.php artisan config:clear php artisan cache:clear php artisan r...
Title: Laravel Blog
Content: composer create-project --prefer-dist laravel/laravel blog php artisan make:model Category -m php artisan make:model Post -m php artisan migrate composer require laravel/breeze php artisan breeze...
Title: Laravel Blade Input select
Content: //controller: public function create():View { $users= User::select(['id','name']) ->pluck('name','id'); return view('tasks.create',compact('users')); //blade <select name="user_id...
Title: Laravel Migration
Content: php artisan make:migration add_is_admin_to_users_table --table=users php artisan migrate --path=/database/migrations/2025_01_22_140127_add_is_admin_to_users_table.php