/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $types = Material_type::latest()->get();
     return view('backend.pages.element.type.index', compact('types'));
 }