CountryController

public function store(Request $request)

store Function :  Through store Function Country data is saved in Country table

 

public function lookup(Request $request)

Lookup Function: Lookup Function generates the Country Report

 

public function show(Country$country)

Show Function : In the View Mode of Country form, the Show function displays all details of the Country form.

 

public function edit(Country $country)

edit Function : You can edit the entire details of the Country form when editing in edit mode by using the Edit Function

 

public function destroy(Country$country)

destroy Function : The Destroy Function allows the deletion of all Country form details

 

public function validation($request, $id = null)

validation Function : Data is validated before saving using this function.

Was this page helpful?

Add a Comment

Your email address will not be published. Required fields are marked *