api code global jain
This commit is contained in:
86
app/Http/Controllers/ThanaController.php
Normal file
86
app/Http/Controllers/ThanaController.php
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Thana;
|
||||
use App\Http\Requests\StoreThanaRequest;
|
||||
use App\Http\Requests\UpdateThanaRequest;
|
||||
|
||||
class ThanaController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*
|
||||
* @param \App\Http\Requests\StoreThanaRequest $request
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function store(StoreThanaRequest $request)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*
|
||||
* @param \App\Models\Thana $thana
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function show(Thana $thana)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*
|
||||
* @param \App\Models\Thana $thana
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function edit(Thana $thana)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param \App\Http\Requests\UpdateThanaRequest $request
|
||||
* @param \App\Models\Thana $thana
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function update(UpdateThanaRequest $request, Thana $thana)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*
|
||||
* @param \App\Models\Thana $thana
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function destroy(Thana $thana)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user