Code Monkey home page Code Monkey logo

laravel-coming-soon's Introduction

Description

A straightforward Coming Soon package for Laravel with Countdown timer and Email capture.

Just Install the package, configure .env and you are ready to go!

coming-soon-screenshot

Installation

  • Install using composer
composer require tumainimosha/laravel-coming-soon
  • After Installation run this command to publish assets
php artisan vendor:publish --provider="snw\\ComingSoon\\ComingSoonServiceProvider" --tag="assets"
  • Add Coming Soon route to your route file

Option (a) As the home route. Users will see this as landing page for yourdomain.com.

// file: routes/web.php

Route::get('/', function () {
    return view('comingsoon::comingsoon');
});

Option (b). As default route. Users will see this when trying to access any URL on your site

// file: routes/web.php

Route::any('{query}', function () {
    return view('comingsoon::comingsoon');
})->where('query', '.*');

If you want to display the Email form

Publish the migrations

php artisan vendor:publish --provider="snw\\ComingSoon\\ComingSoonServiceProvider" --tag="migrations"

Then run

php artisan migrate

This will create a coming_soons table containing list of email of visitors to the site

.env values

You will have to add the following to your .env and set values accordingly

  • OFFLINE_ENABLE= {true/false} (Enable Coming Soon page)
  • OFFLINE_SHOW_EMAIL_FORM= {true/false} (Display the Email form)
  • OFFLINE_SEND_EMAIL_TO= {[email protected]}
  • OFFLINE_YEAR= {2018} (Countdown year)
  • OFFLINE_MONTH= {12} (Countdown month)
  • OFFLINE_DAY= {1} (Countdown day)
  • OFFLINE_HOURS= {1} (Countdown hours)
  • OFFLINE_MINUTES= {60} (Countdown minutes)
  • OFFLINE_SECONDS= {60} (Countdown seconds)
  • OFFLINE_FACEBOOK= {http://facebook.com/softnweb}
  • OFFLINE_INSTAGRAM= {#}
  • OFFLINE_GITHUB= {#}
  • OFFLINE_MAIL= {[email protected]}

Security

If you discover any security related issues, please email Me instead of using the issue tracker.

Credits

This package is forked SoftNWeb/laravel-coming-soon package

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.