Skip to content

Commit

Permalink
Create GetSampleAccounts.php
Browse files Browse the repository at this point in the history
  • Loading branch information
danielh-official committed Nov 14, 2024
1 parent 3391aa0 commit 4b88722
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/Actions/Sample/GetSampleAccounts.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

declare(strict_types=1);

namespace App\Actions\Sample;

use App\Models\Payee;

class GetSampleAccounts
{
public function handle()
{
return collect(Payee::factory(1)->raw());
}
}

0 comments on commit 4b88722

Please sign in to comment.