Laravel Many to Many Polymorphic Relationship Example
This is the sixth & last blog post of Laravel relationship Model tutorial series. In this tutorial, we are going to learn how to implement Many to Many Polymorphic relationship within our Laravel application. Imagine that, If we have posts, videos, and tag tables, and we require to connect with each other with your requirement like every post have multiple tags and same for videos too. Also every tag many are connected with multiple post or multiple videos too. But we can easily do it using...
Laravel One to Many Polymorphic Relationship Example
This is the fifth blog post of Laravel relationship Model tutorial series. In this tutorial, we are going to learn how to implement One to Many Polymorphic relationship within our Laravel application. Imagine that, If we have posts and videos tables, both need to add comments system. Then you can manage in a single table for both tables by using this One to Many Polymorphic relationship. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel in...
Laravel hasManyThrough Eloquent Relationship example
This is the fourth blog post of Laravel relationship Model tutorial series. In this tutorial, we are going to learn how to implement hasManyThrough relationship within our Laravel application Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in...
Laravel Many to Many Eloquent relationship example
This is the third blog post of Laravel relationship Model tutorial series. In this tutorial, we are going to learn how to implement Many to Many relationship within our Laravel application Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in your...
Laravel One to Many Eloquent relationship example
This is the second blog post of Laravel relationship Model tutorial series. In this tutorial, we are going to learn how to implement One to Many relationship within our Laravel application Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in your...
Laravel One to One Eloquent relationship example
This is the beginning blog post of Laravel relationship series. In this tutorial, we are going to learn how to implement One to One relationship within our Laravel application Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in your...
Ajax dependent University Faculty Degree dropdown
In this tutorial, we are going to learn how to intergrade Srilankan University, Faculty, Degreee PHP package to our Laravel application. You can see the working demo of this application form here. When we need to take the extract Degree programme based on the University and Faculty, you can use this package: Contain all the Government Universities in Srilanka Contain all the Faculties related to particular Unversity Contain all the Degree programmes related to particular Faculty ...
Laravel Datatable Tutorial
In this tutorial, we are going to learn how to implement Datatble in Laravel. When we need to visulaize large number of Data with the actions like Edit,Delete Datatable is the easiet way. This Datatable feature provide facilities like: Pagination Multi Column Ordering Instant Search and etc. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from...
Laravel Localization
In this tutorial, we are going to learn how to implement a multilingual website using Laravel. This localization feature provide facility to retrieve strings in various languages by allowing us to support the multiple languages within our application. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need...
Angular authentication with AWS Amplify
In this tutorial, we are going to implement a full fleged serverless Angular authentication using AWS amplify and Angular. In here, user can signup, verifying their email, sign in, and sign out. Here we will use, 1. Use pre-built UI components 2. Call Authentication APIs manually Prerequisites Node.js To Continue with this tutorial, you should have installed Node.js in your pc. If you are still not installed Node.js in your machine you can download it from here. NPM To...