23 lines
755 B
PHP
23 lines
755 B
PHP
<?php
|
|
function get_mock_cases() {
|
|
return [
|
|
[
|
|
'fir_no' => '684/25',
|
|
'ps' => 'Civil Lines',
|
|
'accused_name' => 'Raja S/o Ram Singh',
|
|
'sections' => '379/411 IPC',
|
|
'complainant' => 'Mahesh Kumar',
|
|
'address' => 'H.No 12, Block A, Delhi.',
|
|
'facts' => 'Accused caught with stolen bike DL-4S-1234.',
|
|
],
|
|
[
|
|
'fir_no' => '102/25',
|
|
'ps' => 'Karol Bagh',
|
|
'accused_name' => 'Sonu',
|
|
'sections' => '25/54/59 Arms Act',
|
|
'complainant' => null,
|
|
'address' => null,
|
|
'facts' => "ITEM: Button actuated knife\nLENGTH: 15cm\nRECOVERED FROM: Right pocket of accused.",
|
|
]
|
|
];
|
|
} |