I don't know any model names , but when you buy laptops consider about ram 16GB , boot device ssd, more than 2GB dedicated graphics card
Group Details
Game Development
Welcome to the Game Development group! You are free to ask anything relating to games/gamedev in this group.
Member List
-
RE: Which is Best Laptops for Android Development ?
-
RE: Laravel Redirect to two routes
i think you have to use javascript with new window.
-
RE: පේමන්ට් ගේට්වේ සෙටප් කරල දෙන කෙනෙක්
puluwan , visa, master, amex koheth ekai
-
RE: පේමන්ට් ගේට්වේ සෙටප් කරල දෙන කෙනෙක්
Thanks bro, i'll check the sandbox
-
RE: පේමන්ට් ගේට්වේ සෙටප් කරල දෙන කෙනෙක්
tell me more info about ipay.lk
-
RE: how to create link table in between mssql and mysql
you have to do, cron based sync programme by backend programming language
- connect to mysql and get data from mysql
- insert or update data to the mssql
-
RE: laravel redirect to wrong url after auth success
overide login function.
inside login controller (app/Http/Controllers/Auth/LoginController.php)
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\Providers\RouteServiceProvider; use Illuminate\Foundation\Auth\AuthenticatesUsers; use Illuminate\Http\Request; use Auth; class LoginController extends Controller { /* |-------------------------------------------------------------------------- | Login Controller |-------------------------------------------------------------------------- | | This controller handles authenticating users for the application and | redirecting them to your home screen. The controller uses a trait | to conveniently provide its functionality to your applications. | */ use AuthenticatesUsers; /** * Where to redirect users after login. * * @var string */ protected $redirectTo = RouteServiceProvider::HOME; /** * Create a new controller instance. * * @return void */ public function __construct() { $this->middleware('guest')->except('logout'); } /** * Write code on Method * * @return response() */ public function login(Request $request) { $request->validate([ 'email' => 'required', 'password' => 'required', ]); $credentials = $request->only('email', 'password'); if (Auth::attempt($credentials)) { return redirect()->route('home'); } return redirect("login")->withSuccess('Oppes! You have entered invalid credentials'); } }