86 lines
1.7 KiB
PHP
86 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\StoreCountryRequest;
|
|
use App\Http\Requests\UpdateCountryRequest;
|
|
use App\Models\Country;
|
|
|
|
class CountryController 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\StoreCountryRequest $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(StoreCountryRequest $request)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Models\Country $country
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(Country $country)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\Country $country
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(Country $country)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \App\Http\Requests\UpdateCountryRequest $request
|
|
* @param \App\Models\Country $country
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(UpdateCountryRequest $request, Country $country)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\Country $country
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(Country $country)
|
|
{
|
|
//
|
|
}
|
|
}
|