I don't think theres a way to only use created_at, timestamps are either on or off. I guess you could turn off the laravel ones and roll with your own code to just use created_at.
Anyway, you can turn off the laravel functionality by adding the following to your models.
protected $timestamps = false;
Si on regarde la définition de la méthode timestamps (Laravel 5 tout du moins) on peux voir que la méthode se contente juste d'appeler deux fois la méthode timestamp() pour générer un champ created_at et updated_at.
Du coup si tu veux gérer uniquement le created_at il suffit juste de remplacer l'appel à timestamps() par un timestap('created_at');
EDIT : désolé pour le déterrage, c'est pour ceux comme moi qui chercherais la solution.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community