Monday, October 2, 2023
spot_imgspot_img
HomeFranchise opportunitiesLittle Caesars Franchise - Little Caesars Franchise

Little Caesars Franchise – Little Caesars Franchise


Little Caesars Franchise Little Caesars Franchise – Little Caesars Franchise 0 && $(‘.responsive-menu-button-text’).length > 0) { $(‘.responsive-menu-button-text-open’).hide(); $(‘.responsive-menu-button-text’).show(); } }, setButtonTextOpen: function() { if($(‘.responsive-menu-button-text’).length > 0 && $(‘.responsive-menu-button-text-open’).length > 0) { $(‘.responsive-menu-button-text’).hide(); $(‘.responsive-menu-button-text-open’).show(); } }, triggerMenu: function() { this.isOpen ? this.closeMenu() : this.openMenu(); }, triggerSubArrow: function(subarrow) { var sub_menu = $(subarrow).parent().siblings(‘.responsive-menu-submenu’); var self = this; if(this.accordion == ‘on’) { /* Get Top Most Parent and the siblings */ var top_siblings = sub_menu.parents(‘.responsive-menu-item-has-children’).last().siblings(‘.responsive-menu-item-has-children’); var first_siblings = sub_menu.parents(‘.responsive-menu-item-has-children’).first().siblings(‘.responsive-menu-item-has-children’); /* Close up just the top level parents to key the rest as it was */ top_siblings.children(‘.responsive-menu-submenu’).slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); /* Set each parent arrow to inactive */ top_siblings.each(function() { $(this).find(‘.responsive-menu-subarrow’).first().html(self.inactiveArrow); $(this).find(‘.responsive-menu-subarrow’).first().removeClass(‘responsive-menu-subarrow-active’); }); /* Now Repeat for the current item siblings */ first_siblings.children(‘.responsive-menu-submenu’).slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); first_siblings.each(function() { $(this).find(‘.responsive-menu-subarrow’).first().html(self.inactiveArrow); $(this).find(‘.responsive-menu-subarrow’).first().removeClass(‘responsive-menu-subarrow-active’); }); } if(sub_menu.hasClass(‘responsive-menu-submenu-open’)) { sub_menu.slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); $(subarrow).html(this.inactiveArrow); $(subarrow).removeClass(‘responsive-menu-subarrow-active’); } else { sub_menu.slideDown(self.subMenuTransitionTime, ‘linear’).addClass(‘responsive-menu-submenu-open’); $(subarrow).html(this.activeArrow); $(subarrow).addClass(‘responsive-menu-subarrow-active’); } }, menuHeight: function() { return $(this.container).height(); }, menuWidth: function() { return $(this.container).width(); }, wrapperHeight: function() { return $(this.wrapper).height(); }, setWrapperTranslate: function() { switch(this.animationSide) { case ‘left’: translate = ‘translateX(‘ + this.menuWidth() + ‘px)’; break; case ‘right’: translate = ‘translateX(-‘ + this.menuWidth() + ‘px)’; break; case ‘top’: translate = ‘translateY(‘ + this.wrapperHeight() + ‘px)’; break; case ‘bottom’: translate = ‘translateY(-‘ + this.menuHeight() + ‘px)’; break; } if(this.animationType == ‘push’) { $(this.pageWrapper).css({‘transform’:translate}); $(‘html, body’).css(‘overflow-x’, ‘hidden’); } if(this.pushButton == ‘on’) { $(‘#responsive-menu-button’).css({‘transform’:translate}); } }, clearWrapperTranslate: function() { var self = this; if(this.animationType == ‘push’) { $(this.pageWrapper).css({‘transform’:”}); setTimeout(function() { $(‘html, body’).css(‘overflow-x’, ”); }, self.animationSpeed); } if(this.pushButton == ‘on’) { $(‘#responsive-menu-button’).css({‘transform’:”}); } }, init: function() { var self = this; $(this.trigger).on(this.triggerTypes, function(e){ e.stopPropagation(); self.triggerMenu(); }); $(this.trigger).mouseup(function(){ $(self.trigger).blur(); }); $(‘.responsive-menu-subarrow’).on(‘click’, function(e) { e.preventDefault(); e.stopPropagation(); self.triggerSubArrow(this); }); $(window).resize(function() { if($(window).width() > self.breakpoint) { if(self.isOpen){ self.closeMenu(); } } else { if($(‘.responsive-menu-open’).length>0){ self.setWrapperTranslate(); } } }); if(this.closeOnLinkClick == ‘on’) { $(this.linkElement).on(‘click’, function(e) { e.preventDefault(); /* Fix for when close menu on parent clicks is on */ if(self.itemTriggerSubMenu == ‘on’ && $(this).is(‘.responsive-menu-item-has-children > ‘ + self.linkElement)) { return; } old_href = $(this).attr(‘href’); old_target = typeof $(this).attr(‘target’) == ‘undefined’ ? ‘_self’ : $(this).attr(‘target’); if(self.isOpen) { if($(e.target).closest(‘.responsive-menu-subarrow’).length) { return; } self.closeMenu(); setTimeout(function() { window.open(old_href, old_target); }, self.animationSpeed); } }); } if(this.closeOnBodyClick == ‘on’) { $(document).on(‘click’, ‘body’, function(e) { if(self.isOpen) { if($(e.target).closest(‘#responsive-menu-container’).length || $(e.target).closest(‘#responsive-menu-button’).length) { return; } } self.closeMenu(); }); } if(this.itemTriggerSubMenu == ‘on’) { $(‘.responsive-menu-item-has-children > ‘ + this.linkElement).on(‘click’, function(e) { e.preventDefault(); self.triggerSubArrow($(this).children(‘.responsive-menu-subarrow’).first()); }); } if (jQuery(‘#responsive-menu-button’).css(‘display’) != ‘none’) { $(‘#responsive-menu-button,#responsive-menu a.responsive-menu-item-link, #responsive-menu-wrapper input’).focus( function() { $(this).addClass(‘is-active’); $(‘html’).addClass(‘responsive-menu-open’); $(‘#responsive-menu li’).css({“opacity”: “1”, “margin-left”: “0”}); }); $(‘#responsive-menu-button, a.responsive-menu-item-link,#responsive-menu-wrapper input’).focusout( function() { if ( $(this).last(‘#responsive-menu-button a.responsive-menu-item-link’) ) { $(this).removeClass(‘is-active’); $(‘html’).removeClass(‘responsive-menu-open’); } }); } $(‘#responsive-menu a.responsive-menu-item-link’).keydown(function(event) { console.log( event.keyCode ); if ( [13,27,32,35,36,37,38,39,40].indexOf( event.keyCode) == -1) { return; } var link = $(this); switch(event.keyCode) { case 13: link.click(); break; case 27: var dropdown = link.parent(‘li’).parents(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.hide(); dropdown.prev().focus(); } break; case 32: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.show(); dropdown.find(‘a, input, button, textarea’).first().focus(); } break; case 35: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.hide(); } $(this).parents(‘#responsive-menu’).find(‘a.responsive-menu-item-link’).filter(‘:visible’).last().focus(); break; case 36: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if( dropdown.length > 0 ) { dropdown.hide(); } $(this).parents(‘#responsive-menu’).find(‘a.responsive-menu-item-link’).filter(‘:visible’).first().focus(); break; case 37: case 38: event.preventDefault(); event.stopPropagation(); if ( link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).first().length == 0) { link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).last().find(‘a’).first().focus(); } else { link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).first().find(‘a’).first().focus(); } break; case 39: case 40: event.preventDefault(); event.stopPropagation(); if( link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).first().length == 0) { link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).last().find(‘a’).first().focus(); } else { link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).first().find(‘a’).first().focus(); } break; } }); } }; ResponsiveMenu.init(); });]]> Logo

If you’re dreaming of owning your own business, give Little Caesars a serious look. We offer a proven business model to help our franchisees provide affordable pizza with no-contact innovation. Take a few minutes to discover the promising opportunity that exists for us to grow together.

Get Started

It’s easy to get started!

Below are the steps to open a Little Caesars after you submit your franchise application.

  • Step 1

    Application and Discovery Day completed

  • Step 2

    Eight-week in-store operations training program

  • Step 3

    Construction of site begins

  • Step 4

    Grand Opening! Congrats, you did it!

Join the Little Caesars Franchise Family

We’re seeking entrepreneurs to be a part of an iconic brand with a bright future.

  • First Name*
  • Last Name*
  • Phone #*
  • Email*
  • State of Interest*

    Select OneAlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaOhioOklahomaOregonPennsylvaniaRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific

  • City of Interest*
  • Cash Available for Investment *

    (*If investing with partner(s), select an option that totals your combined liquidity)

    Select OneUnder $75,000$75,000 – $150,000$150,000+

  • Current Net Worth*

    (*If investing with partner(s), select an option that totals your combined net worth)

    Select OneUnder $200,000$200,000 – $350,000$350,000+

  • How did you hear about us?*

    Select OnePrint advertisingDigital advertisingWord of mouthDirectory listingGoogle searchDenver Press ReleaseSocial mediaEmail newsletter

  • *
  • Source
  • Medium
  • Campaign
  • Term
  • Content
  • The information on this site is about Little Caesars franchise opportunities in the U.S. For employment opportunities, click here.
  • Phone

    This field is for validation purposes and should be left unchanged.

= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find(‘#gform_wrapper_4’);var is_confirmation = jQuery(this).contents().find(‘#gform_confirmation_wrapper_4’).length > 0;var is_redirect = contents.indexOf(‘gformRedirect(){‘) >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery(‘html’).css(‘margin-top’), 10) + parseInt(jQuery(‘body’).css(‘margin-top’), 10) + 100;if(is_form){jQuery(‘#gform_wrapper_4’).html(form_content.html());if(form_content.hasClass(‘gform_validation_error’)){jQuery(‘#gform_wrapper_4’).addClass(‘gform_validation_error’);} else {jQuery(‘#gform_wrapper_4’).removeClass(‘gform_validation_error’);}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */ jQuery(document).scrollTop(jQuery(‘#gform_wrapper_4’).offset().top – mt); }, 50 );if(window[‘gformInitDatepicker’]) {gformInitDatepicker();}if(window[‘gformInitPriceFields’]) {gformInitPriceFields();}var current_page = jQuery(‘#gform_source_page_number_4’).val();gformInitSpinner( 4, ‘https://franchise.littlecaesars.com/wp-content/plugins/gravityforms/images/spinner.gif’ );jQuery(document).trigger(‘gform_page_loaded’, [4, current_page]);window[‘gf_submitting_4’] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find(‘.GF_AJAX_POSTBACK’).html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery(‘#gform_wrapper_4’).replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery(‘#gf_4’).offset().top – mt);jQuery(document).trigger(‘gform_confirmation_loaded’, [4]);window[‘gf_submitting_4’] = false;}, 50);}else{jQuery(‘#gform_4’).append(contents);if(window[‘gformRedirect’]) {gformRedirect();}}jQuery(document).trigger(‘gform_post_render’, [4, current_page]);} );} );]]>

Join a family that serves the community

Little Caesars donated and delivered 1 MILLION pizzas to healthcare workers and first responders across the country. Be a part of a family that gives back.

  • 1959

    Founded in Detroit, Michigan

  • 25+

    Countries and territories worldwide

  • 3rd

    Largest pizza chain in the world*

Veterans Program

Little Caesars offers honorably discharged veterans and Gold Star families financial incentives to open a Little Caesars franchise of their own. Benefits include a franchise fee discount, equipment and supply discount, financing assistance, and advertising and publicity support, among others.

The Veteran’s Program was established in 2006 by Little Caesars founder Mike Ilitch, who proudly served with the United States Marine Corps during the Korean War. His vision was to expand business opportunities for his fellow military veterans. Today, there are hundreds of veteran-owned Little Caesars stores across the country.

First Responders Program

Little Caesars has extended its franchise incentive program to first responders. First responders receive a franchise fee discount, equipment and supply discount, financing assistance, and advertising and publicity support, as well as other benefits.

Americans Love
Our Pizza

“If you build something worthwhile, people will come.”

—Mike Ilitch, Founder

Headquartered in Detroit, Michigan, Little Caesars was founded in 1959 as a single, family-owned restaurant. Since then it has become the third largest pizza chain in the world* with stores in more than 25 countries and territories worldwide, including in each of the 50 U.S. states.

Known for our $5 Hot-N-Ready® pizza, Little Caesars has been named “Best Value in America” for 14 years in a row.** Our legacy of innovation and focus on convenience continue with the Pizza Portal®—the FIRST heated, self-service mobile order pickup station in the restaurant industry. We’ve also added delivery to our standout lineup of no-contact ordering options.

How Much Does it Cost to Own a Little Caesars?

Little Caesars is an exciting investment in the wildly popular pizza segment. Our straightforward business model, world-class support and millions of devoted customers make us a worthy investment for entrepreneurs who want to make an impact. You can even choose to invest in your franchise with a partner and use consolidated liquidity and net worth. Here are the costs and fees associated with opening a new Little Caesars location:

  • Estimated total investment: Starting at $360,000
  • Net worth requirement: $350,000
  • Liquid asset requirement: $150,000

View Franchise Finance Lenders

Where are
We Growing?

Little Caesars is one of the rare iconic brands with room to grow, and we’re accelerating our franchise developments by targeting key markets across the country.

Check Availability We are Lil Caesars play-button

A Model for Every Market

Our unique concept offers low square footage, an optimal number of employees and grab-and-go service, which help to keep costs low and margins high. Little Caesars has the perfect store design for every market:

classic express franchise model

Traditional

  • 1,400 – 1,600 Square Feet
  • Inline or Free Standing
  • Adequate parking
  • Drive thru window – Where possible

Other Franchise Models Available

  • We also offer non-traditional franchise models from 470 to 1,399 square feet
  • Great for convenience stores, military bases, airports, and universities

Serving up peace of mind with a business model that keeps innovating

Little Caesars started 60 years ago with the pride and principles of a family-owned company. And that continues today. From our franchisees to our pizzas to our customers, health, safety, and happiness always come first.

No-contact options to keep your community safe

  • chart icon

    Left at the door with a ring of the doorbell

  • meeting icon

    Held at a safe temperature until you get here

  • talking icon

    Held at a safe temperature for you and accessible using a no-contact QR code

  • gear icon

Ready to Invest in a
Little Caesars Franchise?

We’re ready to hear from you! Little Caesars is actively seeking passionate entrepreneurs with a desire to lead a team and become a meaningful part of your community to join our iconic brand. Fill out the form below and we’ll reach out to begin a conversation. Let’s make the future brighter together!

  • First Name*
  • Last Name*
  • Phone #*
  • Email*
  • State of Interest*

    Select OneAlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaOhioOklahomaOregonPennsylvaniaRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific

  • City of Interest*
  • Cash Available for Investment *

    (*If investing with partner(s), select an option that totals your combined liquidity)

    Select OneUnder $75,000$75,000 – $150,000$150,000+

  • Current Net Worth*

    (*If investing with partner(s), select an option that totals your combined net worth)

    Select OneUnder $200,000$200,000 – $350,000$350,000+

  • How did you hear about us?*

    Select OnePrint advertisingDigital advertisingWord of mouthDirectory listingGoogle searchDenver Press ReleaseSocial mediaEmail newsletter

  • *
  • Source
  • Medium
  • Campaign
  • Term
  • Content
  • The information on this site is about Little Caesars franchise opportunities in the U.S. For employment opportunities, click here.
  • Phone

    This field is for validation purposes and should be left unchanged.

= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find(‘#gform_wrapper_4’);var is_confirmation = jQuery(this).contents().find(‘#gform_confirmation_wrapper_4’).length > 0;var is_redirect = contents.indexOf(‘gformRedirect(){‘) >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery(‘html’).css(‘margin-top’), 10) + parseInt(jQuery(‘body’).css(‘margin-top’), 10) + 100;if(is_form){jQuery(‘#gform_wrapper_4’).html(form_content.html());if(form_content.hasClass(‘gform_validation_error’)){jQuery(‘#gform_wrapper_4’).addClass(‘gform_validation_error’);} else {jQuery(‘#gform_wrapper_4’).removeClass(‘gform_validation_error’);}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */ jQuery(document).scrollTop(jQuery(‘#gform_wrapper_4’).offset().top – mt); }, 50 );if(window[‘gformInitDatepicker’]) {gformInitDatepicker();}if(window[‘gformInitPriceFields’]) {gformInitPriceFields();}var current_page = jQuery(‘#gform_source_page_number_4’).val();gformInitSpinner( 4, ‘https://franchise.littlecaesars.com/wp-content/plugins/gravityforms/images/spinner.gif’ );jQuery(document).trigger(‘gform_page_loaded’, [4, current_page]);window[‘gf_submitting_4’] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find(‘.GF_AJAX_POSTBACK’).html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery(‘#gform_wrapper_4’).replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery(‘#gf_4’).offset().top – mt);jQuery(document).trigger(‘gform_confirmation_loaded’, [4]);window[‘gf_submitting_4’] = false;}, 50);}else{jQuery(‘#gform_4’).append(contents);if(window[‘gformRedirect’]) {gformRedirect();}}jQuery(document).trigger(‘gform_post_render’, [4, current_page]);} );} );]]> trigger popup

UPCOMING SEMINARS AND SHOWS

Most Popular