2017-09-14 22:21:00 +03:00

27 lines
477 B
PHP

<?php
namespace App\Http\ViewComposers;
use App\Traits\DateTime;
use Illuminate\View\View;
class All
{
use DateTime;
/**
* Bind data to the view.
*
* @param View $view
* @return void
*/
public function compose(View $view)
{
// Make sure it's installed
if (env('DB_DATABASE', '') != '') {
// Share date format
$view->with(['date_format' => $this->getCompanyDateFormat()]);
}
}
}