source:
app/Http/Controllers/CrimeCaseController.php@
6b10b67
Last change on this file since 6b10b67 was 6b10b67, checked in by , 10 months ago | |
---|---|
|
|
File size: 233 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | namespace App\Http\Controllers; |
4 | |
5 | use Illuminate\Http\Request; |
6 | |
7 | class CrimeCaseController extends Controller |
8 | { |
9 | function cases(){ |
10 | return view('cases'); |
11 | } |
12 | function case(){ |
13 | return view('case'); |
14 | } |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.