source: app/Http/Controllers/CrimeCaseController.php@ 92df8cd

main
Last change on this file since 92df8cd was d9c4096, checked in by bube-ristovska <ristovska725@…>, 9 months ago

Bug with embg

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<?php
2
3namespace App\Http\Controllers;
4
5use Illuminate\Http\Request;
6use Illuminate\Support\Facades\DB;
7use Illuminate\Support\Facades\Session;
8class CrimeCaseController extends Controller
9{
10 function cases(){
11 if(Session::get('pe_id') == null) {
12 return view('login');
13 }
14
15
16 if(Session::get('is_policeman')){
17 $police_station = DB::select('select * from police_station where p_id=:p_id;',['p_id'=> Session::get('p_id')]);
18 } else {
19 $police_station = DB::select('select * from police_station where pe_id=:pe_id;',['pe_id'=> Session::get('pe_id')]);
20 }
21
22 $cases = DB::select('select * from crime_case where p_id=:p_id;',['p_id'=> $police_station[0]->p_id]);
23
24
25 return view('cases', [
26 'cases' => $cases,
27 'p_address'=>$police_station[0]->p_address
28 ]);
29
30 }
31 function case($wildcard){
32 $case = DB::select('select * from crime_case where c_id=:c_id;',['c_id'=> $wildcard]);
33 $p_address = DB::select('select p_address from police_station where p_id=:p_id;',['p_id'=> $case[0]->p_id]);
34 $statements = DB::select('select * from statements where c_id=:c_id;',['c_id'=> $wildcard]);
35 $evidence = DB::select('select * from evidence_of_case where c_id=:c_id;',['c_id'=> $wildcard]);
36 return view('case', [
37 'case' => $case[0],
38 'p_address'=>$p_address[0]->p_address,
39 'statements'=>$statements,
40 'evidence'=>$evidence,
41 ]);
42 }
43}
Note: See TracBrowser for help on using the repository browser.