Skip to content

Instantly share code, notes, and snippets.

View sagormax's full-sized avatar
🏠
Working from home

Rashedul Islam Sagor sagormax

🏠
Working from home
View GitHub Profile
@sagormax
sagormax / DepositModelTest.php
Created September 12, 2024 00:24
Laravel Model Unit Test
<?php
use App\Models\Deposit;
use Illuminate\Support\Facades\Schema;
describe('Deposit model', function () {
test('should match fillable properties', function () {
$fillable = [
'category_id',
'status',