skip to Main Content

Laravel 8 + backpack error on "php artisan backpack:crud-operation SendNotification"

I installed Laravel 8 with backpack 5.1 and I run php artisan backpack:crud-operation SendNotification I got error: root@9139092f4397:/var/www/khm-hrms# php artisan backpack:crud-operation SendNotification BadMethodCallException Method IlluminateSupportStringable::lcfirst does not exist. at vendor/laravel/framework/src/Illuminate/Macroable/Traits/Macroable.php:113 109▕ */ 110▕ public function __call($method, $parameters) 111▕ { 112▕…

VIEW QUESTION

I'm trying migration and it is throwing Exception Error? – Laravel

Code: ` public function up() { Schema::create('subscriptions', function (Blueprint $table) { $table->id(); $table->integer('month',4); $table->integer('price',7); $table->tinyInteger('status')->default(1); $table->timestamps(); }); }` Error: QLSTATE[42000]: Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto column and it must be…

VIEW QUESTION
Back To Top
Search