/project-exercise

A small exercise project in Laravel

Primary LanguagePHP

About Application

This mini application has a migration for the borrowers table, and You need to do the following:

what you need to do is you need to fork this repo (don't clone it);

  • Need to create a Borrower Model.
  • Need to create a borrower CRUD view.
  • Keep in mind the borrower will be called by its UUID.
  • Every time you create a new record, will store a random 5 numbers in an (array) in the steps field.
  • DOB will be stored and called as a Carbon Date.
  • Once the borrower is created, he should receive a welcome email from the application through (a queue), that he was created.
  • Create a seeder of 20 borrowers to see them as a list of borrowers.

This mini application need to created by following Laravel best practices, by using DRY and SOLID principles.

Good Luck.