Breaking

Showing posts with label Laravel 5.4 Tutorials in urdu. Show all posts
Showing posts with label Laravel 5.4 Tutorials in urdu. Show all posts

Tuesday, July 11, 2017

July 11, 2017

laravel 5 4 ACL in urdu 2017

Hello Friends,

Welcome to This Laravel 5.4 Tutorial for Beginners by Perfect Web Solutions, In This Video Tutorial, we will learn about ACL in Laravel 5.4.



Laravel provides a simple way to authorize user actions against a given resource. Like authentication, Laravel's approach to authorization is simple, and there are two primary ways of authorizing actions: Gates and policies.



Think of gates and policies like routes and controllers. Gates provide a simple, Closure based approach to authorization while policies, like controllers, group their logic around a particular model or resource. We'll explore gates first and then examine policies.



You do not need to choose between exclusively using gates or exclusively using policies when building an application. Most applications will most likely contain a mixture of gates and policies, and that is perfectly fine! Gates are most applicable to actions which are not related to any model or resource, such as viewing an administrator dashboard. In contrast, policies should be used when you wish to authorize an action for a particular model or resource.





If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Saturday, June 17, 2017

June 17, 2017

Laravel 5.4 Tutorial For Beginners Part 19: Learn How to Use Eloquent Mu...


Hello Friends,

Welcome to This Laravel 5.4 Tutorial for Beginners by Perfect Web Solutions, In This Video Tutorial we are going to learn How to Use Eloquent Mutators



Accessors and mutators allow you to format Eloquent attribute values when you retrieve or set them on model instances. For example, you may want to use the Laravel encrypter to encrypt a value while it is stored in the database, and then automatically decrypt the attribute when you access it on an Eloquent model.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Saturday, June 10, 2017

June 10, 2017

Laravel 5.4 Tutorial For Beginners Part 18: Learn How to Use Sessions vi...


Hello Friends,

Welcome to our Laravel 5.4 Tutorial For Beginners, in this video tutorial we will learn about HTTP Sessions in Laravel 5.

In this video tutorial, You will learn,



Retrieving Session Data

Storing Session Data

Flash Session Data

Deleting Session Data



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Thursday, June 8, 2017

June 08, 2017

Laravel 5.4 Tutorial For Beginners Part 17: Learn How to upload a file v...


Hello Friend,

In this video Tutorial, I will show you How to upload a file using laravel 5.4 in Urdu and add it to your database as well using HTTP Request method inside Laravel 5 also You may access uploaded files from a "Illuminate\Http\Request" instance using the file method or using dynamic properties. The file method returns an instance of the  "Illuminate\Http\UploadedFile" class, which extends the PHP SplFileInfo class and provides a variety of methods for interacting with the file:



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Wednesday, May 31, 2017

May 31, 2017

Laravel 5.4 Tutorial For Beginners Part 16: Laravel 5 Basic Usage of Loc...


Hello Friends,

In this video Tutorial, I will give you Laravel 5 Basic Usage of Localization in Urdu

Laravel's localization features provide a convenient way to retrieve strings in various languages, allowing you to easily support multiple languages within your application. Language strings are stored in files within the resources/lang directory. Within this directory there should be a subdirectory for each language supported by the application:

If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Saturday, May 27, 2017

May 27, 2017

Laravel 5.4 Tutorial For Beginners Part 15: Laravel 5 Pagination Basic U...


Hello Friend,

In this video tutorial, you will learn about Laravel 5 Pagination Basic Usage.



In other frameworks, pagination can be very painful. Laravel's paginator is integrated with the query builder and Eloquent ORM and provides convenient, easy-to-use pagination of database results out of the box. The HTML generated by the paginator is compatible with the Bootstrap CSS framework.



There are several ways to paginate items. The simplest is by using the paginate method on the query builder or an Eloquent query. The paginate method automatically takes care of setting the proper limit and offset based on the current page being viewed by the user. By default, the current page is detected by the value of the page query string argument on the HTTP request. Of course, this value is automatically detected by Laravel and is also automatically inserted into links generated by the paginator.





If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfect.web.solutions.jhelum

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Wednesday, May 24, 2017

May 24, 2017

Laravel 5.4 Tutorial For Beginners Part 14: Laravel 5 Form Validation Qu...


Hello Friends,

In this video tutorial, we will learn about Laravel 5.4 validation

Laravel provides several different approaches to validate your application's incoming data. By default, Laravel's base controller class uses a ValidatesRequests trait which provides a convenient method to validate incoming HTTP request with a variety of powerful validation rules.

To learn about Laravel's powerful validation features, watch this Video Tutorial till end.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Tuesday, May 23, 2017

May 23, 2017

Laravel 5.4 Tutorial For Beginners Part 13: Learn about Laravel 5 Middle...


Hello Friend,

In this video Tutorial, you will learn about Laravel 5 Middlewares

Middleware provides a convenient mechanism for filtering HTTP requests entering your application. For example, Laravel includes a middleware that verifies the user of your application is authenticated. If the user is not authenticated, the middleware will redirect the user to the login screen. However, if the user is authenticated, the middleware will allow the request to proceed further into the application.



Of course, additional middleware can be written to perform a variety of tasks besides authentication. A CORS middleware might be responsible for adding the proper headers to all responses leaving your application. A logging middleware might log all incoming requests to your application.



There are several middleware included in the Laravel framework, including middleware for authentication and CSRF protection. All of this middleware are located in the app/Http/Middleware directory.

If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Sunday, May 21, 2017

May 21, 2017

Laravel 5.4 Tutorial For Beginners Part 12: Learn about Laravel 5 Authen...


Hello Friends,



Laravel 5 makes implementing authentication very simple. In fact, almost everything is configured for you out of the box. The authentication configuration file is located at config/auth.php, which contains several well-documented options for tweaking the behaviour of the authentication services.



Don't worry if this all sounds confusing now! Many applications will never need to modify the default authentication configuration.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Tuesday, May 16, 2017

May 16, 2017

Laravel 5.4 Tutorial For Beginners Part 11: Learn about Laravel 5 CRUD O...



Hello Friends,



In this video you will learn about Laravel 5 CRUD Operations, you will learn how to Create / Read / Update and Delete Data in the Tables.



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Thursday, May 11, 2017

May 11, 2017

Laravel 5 Tutorial For Beginners Part 10: Learn about Laravel 5 Faker an...





Hello Friends,

In this video, you are going toLearn about Laravel 5 Faker and Tinker Utilities.



When testing, you may need to insert a few records into your database before executing your test. Instead of manually specifying the value of each column when you create this test data, Laravel allows you to define a default set of attributes for each of your Eloquent models using model factories. To get started, take a look at the database/factories/ModelFactory.php file in your application. Out of the box, this file contains one factory definition:



All Laravel applications include Tinker, a REPL powered by the PsySH package. Tinker allows you to interact with your entire Laravel application on the command line, including the Eloquent ORM, jobs, events, and more. To enter the Tinker environment, run the tinker Artisan command:



If you like the video, then please do like the video and do subscribe to my channel for more videos.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/

Monday, April 24, 2017

April 24, 2017

Laravel 5 Tutorial For Beginners Part 03: Learn About Laravel Routing an...



Hello Friend,
Perfect web solutions welcome you in this video tutorial series of Laravel 5.4, in this video, you will learn basic Laravel Routing and views using PHP Artisan as well as by using Localhost.

if you really like to learn Laravel 5 complete from scratch then do subscribe to my channel as I am going to build a complete blog plus a complete e-commerce store using Laravel 5.4

if you like my videos then please click like button and do subscribe to my channel.

Visit our Fan page on Facebook: https://www.facebook.com/perfectwebso...
Visit our Fan Page on Twitter: @pwspkjlm
Visit our Official Website: http://perfectwebsolutions.info/
  • Category

  • Licence

    • Standard YouTube Licence

Thursday, April 20, 2017

April 20, 2017

Laravel 5 4 From Scratch Part 01: Learn about Laravel Installation and C...



Hello Friends,



This is the first tutorial of Laravel 5.4, in this tutorial you will learn how to install Laravel using Composer software, this is a complete series of Laravel 5.4 from scratch and you will learn Laravel installation and composer.



Visit our Fan page on Facebook: https://www.facebook.com/perfectwebsolutions

Visit our Fan Page on Twitter: @pwspkjlm

Visit our Official Website: http://perfectwebsolutions.info/