87 lines
1.7 KiB
PHP
87 lines
1.7 KiB
PHP
<?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)
|
|
{
|
|
//
|
|
}
|
|
}
|