Thursday 28 May 2020

Alag - He is Different. Bollywood Movie Alag - He is Different. Full HD Movie Alag - He is Different. Alag - He is Different is a 2006 Indian Hindi science fiction Movie. Alag - He is Different starring Akshay Kapoor and Dia Mirza and Yatin Karyekar in lead roles. Alag - He is Different directed by Ashu Trikha and produced by Subi Samuel.



Ek Aur Bol Bachchan. Telugu Movie In Hindi Dubbed Ek Aur Bol Bachchan. Indian Telugu-language action comedy Movie Ek Aur Bol Bachchan. Ek Aur Bol Bachchan directed by K. Vijaya Bhaskar. Ek Aur Bol Bachchan Starring Venkatesh, Ram, Anjali, Shazahn Padamsee in lead roles. Ek Aur Bol Bachchan is a remake of the 2012 Hindi film Bol Bachchan



Indian Soldier Never On Holiday. Tamil Hindi Dubbed Movie Indian Soldier Never On Holiday .Full HD Movie Indian Soldier Never On Holiday .Indian Tamil-language action thriller Movie Indian Soldier Never On Holiday . The Movie Indian Soldier Never On Holiday revolves around an Indian Army officer on a mission to track down, destroy and deactivate a sleeper cell, after witnessing and barely escaping a bomb blast executed by the cell. Super Hit Movie Indian Soldier Never On Holiday .



Tuesday 26 May 2020

The Super Khiladi 3. Telugu Hindi Dubbed Full Movie The Super Khiladi 3. Full HD Movie The Super Khiladi 3. Telugu romantic comedy Movie The Super Khiladi 3. The Super Khiladi 3 Movie directed by Kishore Tirumala. Superhit Telgu Hindi Dubbed Movie The Super Khiladi 3.



Ek Tha Nayak . South Indian Action Movie Ek Tha Nayak . Hindi Dubbbed Movie Ek Tha Nayak .Blockbuster Super Hit Kannada Movie Dubbed in Hindi "Ek Tha Nayak". Full HD Movie Ek Tha Nayak .



Tango Charlie. Bollywood Superhit Movie Tango Charlie. Indian Hindi war Movie Tango Charlie. Tango Charlie Movie written and directed by Mani Shankar. Very Intense & Influential Actor Ajay Devgan Movie Tango Charlie. Full HD Movie Tango Charlie. Other Legendary Actors in Movie Tango Charlie are Sanjay Dutt, Sunil Shetty, Bobby Deol



Monday 25 May 2020

Khaaki Vardi. Hindi Dubbed Movie Khaaki Vardi. Indian Malayalam Movie Khaaki Vardi. Full Hindi Movie Khaaki Vardi. Full HD Movie Khaaki Vardi. Actor Prithviraj Movie Khaaki Vardi. Super Hit Movie Khaaki Vardi.



Sooryavansham. Bollywood Movie Sooryavansham. Bollywood Blockbuster Movie Sooryavansham. Legendary Actor Amitabh Bachchan Movie Sooryavansham. Full HD Movie Sooryavansham. Hindi musical drama Movie Sooryavansham. Sooryavansham Amitabh Bachchan in a dual role.



Kohram. Bollywood Movie Kohram. Bollywood Super Hit Movie Kohram. Two Legendary Actor Amitabh Bachan and Nana Patekar Movie Kohram. Full HD Movie Kohram. Actress Tabu in main cast with Jaya Pradha, Jackie Shroff and other supporting actors in Movie Kohram. Hindi Action Movie Kohram. Kohram is a 1999 Indian Hindi action Movie directed by Mehul Kumar.



Saturday 23 May 2020

Wajood. Big Hit Movie Wajood. Nana Patekar Madhuri Dixit Movie Wajood. Full HD Movie Wajood. Bollywood Big Super Hit Movie Wajood.



Shiva - The Super Hero . Telgu Dubbed Movie Shiva - The Super Hero . Full Hindi Dubbed Movie Shiva - The Super Hero . Full HD Movie Shiva - The Super Hero . Vikram, Shriya Saran Movie Shiva - The Super Hero .



Dangerous Khiladi. Telugu Movie Dangerous Khiladi. Telugu Hindi Dubbed Movie Dangerous Khiladi. Full HD Movie Dangerous Khiladi. Allu Arjun, Ileana D Cruz, Sonu Sood Dangerous Khiladi.



Kai Po Che. Full Hindi FHD Movie Kai Po Che. Bollywood Super Hit Movie Kai Po Che. Rajkummar rao, Sushant Singh, Amit Sadh, Amrita Puri Kai Po Che.



Tiger Galli (2019). New Released Hindi Dubbed Movie Tiger Galli (2019). Full HD Movie Tiger Galli (2019). Tollywood Movie Tiger Galli (2019). Sathish Ninasam, Bhavana Rao, Roshni Prakash, Shivamani Full Movie Tiger Galli (2019).



Sunday 17 May 2020

Ghajini . Bollywood Super hit Movie Ghajini . Full HD Movie Ghajini . Aamir Khan Best Movie Ghajini .



Dayaalu . South Indian dubbed Movie Dayaalu .Tollywood Movie Dayaalu . New Hindi Dubbed Movie Dayaalu . Nagarjuna Akkineni, Naga Chaitanya, Samantha AkkineniDayaalu . Full HD Movie Dayaalu .



jwt in laravel 6

Jwt in laravel 6

After installing a fresh laravel 6 we need to follow these steps to secure Rest
Api Using Jwt Token.

Step: 1 Create auth routes
-------------------------------------------------------------
composer require laravel/ui "^1.0" --dev

php artisan ui vue --auth

php artisan migrate

Step: 2 Install jwt package
---------------------------
composer require tymon/jwt-auth

php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\LaravelServiceProvider"

php artisan jwt:secret

Add service provider in app/app.php inside 'providers'

Tymon\JWTAuth\Providers\LaravelServiceProvider::class,


Step 3#: Update your user model
---------------------------
<?php

namespace App;

use Tymon\JWTAuth\Contracts\JWTSubject;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

class User extends Authenticatable implements JWTSubject
{
    use Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];

     public function getJWTIdentifier()
    {
        return $this->getKey();
    }

 
    public function getJWTCustomClaims()
    {
        return [];
    }
}


Step: 4# Create middleware
---------------------------
php artisan make:middleware AuthJwt

Middleware code
  $routeMiddleware in array

 'jwtauth'  => \App\Http\Middleware\AuthJwt::class,

change guard in auth.php

driver' => 'jwt',

Middleware code

<?php

namespace App\Http\Middleware;
use Illuminate\Support\Facades\Auth;

use Closure;

class AuthJwt
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        try {
            $user = $this->guard()->userOrFail();
        } catch (\Tymon\JWTAuth\Exceptions\UserNotDefinedException $e) {
            echo $e->getMessage();
        }

        return $next($request);
     
    }

    public function guard()
    {
    return Auth::guard('api');
    }
}



Step:5# Create Auth controller
---------------------------
php artisan make:controller AuthController

<?php
namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Http\Controllers\Controller;


class AuthController extends Controller
{

public function login(Request $request)
{
$credentials = request(['email', 'password']);
            if (! $token = auth('api')->attempt($credentials)) {
            return response()->json(['error' => 'Invalid Credentials'], 401);
        }

            return $this->respondWithToken($token);
}

/**
* Get the authenticated User
*
* @return \Illuminate\Http\JsonResponse
*/
public function me()
{
return response()->json($this->guard()->user());
}

/**
* Log the user out (Invalidate the token)
*
* @return \Illuminate\Http\JsonResponse
*/
public function logout()
{
$this->guard()->logout();

return response()->json(['message' => 'Successfully logged out']);
}

/**
* Refresh a token.
*
* @return \Illuminate\Http\JsonResponse
*/
public function refresh()
{
return $this->respondWithToken($this->guard('api')->refresh());
}

/**
* Get the token array structure.
*
* @param string $token
*
* @return \Illuminate\Http\JsonResponse
*/
protected function respondWithToken($token)
{
return response()->json([
'access_token' => $token,
'token_type' => 'bearer',
'expires_in' => $this->guard('api')->factory()->getTTL() * 60
]);
}

/**
* Get the guard to be used during authentication.
*
* @return \Illuminate\Contracts\Auth\Guard
*/
public function guard()
{
return Auth::guard('api');
}
}

?>

Step 6#: Adding auth routes
--------------------------------

Route::post('login', 'AuthController@login');

Route::get('me', 'AuthController@me')->middleware('jwtauth');

Route::get('logout', 'AuthController@logout');


Route::get('refresh', 'AuthController@refresh');


Postman testing

jwt in laravel 6



Thursday 14 May 2020

Alludu seenu. Tollywood Superhit Movie Alludu seenu. Hindi Dubbed Full Movie Alludu seenu. Indian-Telugu dubbed Movie Alludu seenu. South indian dubbed Movie Alludu seenu. Full HD Movie Alludu seenu.



Tarzan The Heman. Tollywood Superhit Movie Tarzan The Heman. 2018 New Released Movie Tarzan The Heman. South Indian Dubbed Full Movie Tarzan The Heman.Hindi Dubbed Full Movie Tarzan The Heman. Full HD Movie Tarzan The Heman. Jayam Ravi, Sayyeshaa Movie Tarzan The Heman.



Arddhanaari. New South Indian Full Hindi Dubbed Movie Arddhanaari. Superhit Tollywood Movie Arddhanaari. Full Hindi Dubbed Movie Arddhanaari. Full HD Movie Arddhanaari. Newcomers Arjun Yajath as Transgender and Mouryaani in lead roles in Arddhanaari.



Express Khiladi. Tollywood Full Movie Express Khiladi. Hindi Dubbed Full Movie Express Khiladi. South Indian Dubbed Movie Express Khiladi. Full HD Movie Express Khiladi. Dhanush, Keerthy Suresh Best Romentic , Thriller Movie Express Khiladi.



Sunday 10 May 2020

Lakeeran. Lakeeran Punjabi Movie (2016).Full HD Movie Lakeeran. BN Sharma & Nirmal Rishi Punjabi Comedy Movie Lakeeran.


Meri Jung One Man Army (Mass). Tollywood Movie Meri Jung One Man Army (Mass).Telugu Hindi Dubbed Movie Meri Jung One Man Army (Mass) .Nagarjuna, Jyothika, Rahul Dev Movie Meri Jung One Man Army (Mass).Full HD Movie Meri Jung One Man Army (Mass).


iSmart Shankar. Tollywood Movie iSmart Shankar.Full HD Movie iSmart Shankar. ismart Shankar Super Hit Indian Telugu-language action film. Hindi Dubbed Movie iSmart Shankar. Ram Pothineni, Nabha Natesh, Nidhi Agerwal Movie iSmart Shankar.


The Dictator Movie. Tollywood movie The Dictator. The Dictator Movie Dubbed in Hindi as a Yudh ek Jung. The Dictator Full Movie in HD. The Dictator Latest Action Full Movies by Cinekorn . Balakrishna full movie The Dictator.


Bhaghi 2. Bollywood Movie Bhaghi 2. Full HD Movie Bhaghi 2. Tiger Shroff and disha patni Full Movie Bhaghi 2. Sajid Nadiadwala movie Bhaghi 2


Saturday 9 May 2020

MVMP Tollywwod Movie. MVMP (2017) Latest South Indian Movie. Full Hindi Dubbed Movie MVMP. Action Blockbuster Dubbed Movie MVMP. Varun Sandesh and Vithika Sheru are playing the main lead roles in MVMP.


Daava.Tollywood New Action Movie Daava. Full HD Movie Daava.Hindi Dubbed Movie Daava. Starcast in Daava Veera Ranachandi ,Ragini Dwivedi, Ramesh Bhat. Daava Action Movie Was Directed By Anand P. Raju.



Knockout. Knockout Bollywood Full Movie - Irrfan Khan. Sanjay Dutt , Kangana Ranaut also in movie Knockout. Full HD Movie Knockout. Hindi Movie Knockout.Tribute to Irfan Khan By one of her best Movie Knockout.


Pearl Harbor (2001). Tora Tora Tora Full Hollywood Movie Pearl Harbor.Pearl Harbor Full Movie 1080.one of the most terrible battles of World War II Pearl Harbor.


True Story of Pearl Harbor - Tora, Tora, Tora
December 7 1941 was a turning point in history. The world was forever changed after the fateful attack on Pearl Harbour. It was the most daring naval and army manoeuvres of all time. At 7.53am a Japanese commander radioed to his pilots, "Tora, Tora, Tora!" In a matter of minutes, bombs and torpedoes fell from the sky paralysing U.S pacific naval forces.