skip to Main Content

Multi Domain with single login,

I have been planning to create a laravel+vuejs apps stretching across subdomains (presentation creator, forms creator, polls creator etc.,each in a subdomain) and will have 2 version of the same web app (indian version with different languages and content and…

VIEW QUESTION

Laravel Cron Job not executing Eloquent query – CPanel

I just setup a cron job for a laravel project I'm currently working on. This is the handle function in my command. public function handle() { Log::info("PayoutList Cron started!"); $tradersToPay = Investments::select('id', 'monthly_roi') ->where(DB::raw('CURDATE()'), '<=', 'end_date') ->where(DB::raw('DAY(CURDATE())'), '=', DB::raw('DAY(start_date)')) ->where('status',…

VIEW QUESTION

Laravel MYSQL Foriegn Key – Phpmyadmin

While designing the database for a laravel software using MYSQL, is assigning foreign keys relevant or does Laravel take care of that "Software side". In the migration we have something like Table Example: $table->unsignedBigInteger('user_id'); should i modify the example table…

VIEW QUESTION
Back To Top
Search