Getting Started

Scheduling Reports

Once you've setup your application you'll want to schedule reports to Fire Tower.

Open up your app\routes\console.php file and add the Fire Tower report command to your schedule:

<?php

use Illuminate\Support\Facades\Schedule;

//...

Schedule::command('firetower:report')->weekly();

We recommend sending a report in once a week. As we add more checks your needs may change. Feel free to increase the frequency up to once per day.