Skip to content

Commit

Permalink
Adding Money Formating via cast
Browse files Browse the repository at this point in the history
  • Loading branch information
dedanirungu committed Jan 18, 2025
1 parent 39f0679 commit 9580d99
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/Models/ClassYear.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ClassYear extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Course.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Course extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Department.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Department extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Faculty.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Faculty extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Learner.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Learner extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/LearnerCourse.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class LearnerCourse extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Program.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Program extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Qualification.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Qualification extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/School.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class School extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Tertiary.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Tertiary extends BaseModel

public function migration(Blueprint $table): void
{
$table->id();


$table->string('name');
$table->string('description');
Expand Down

0 comments on commit 9580d99

Please sign in to comment.