Laravel Créer un nouveau fichier s'il n'est pas existe

if (!file_exists('somefile.txt')) {
    touch('somefile.txt', strtotime('-1 days'));
}
Blue-eyed Bat