/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $page_title = "الفنيين";
     $technicans = Technican::all();
     return view('technicans.tech_index', compact('technicans', 'page_title'));
 }