use A17\Twill\Models\Behaviors\Sortable;
use A17\Twill\Models\Model as TwillModel;
use App\Flowpaper\Pdf2Json;
+use Carbon\Carbon;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
* @property EmailBatch $emailBatch
* @property TrackedLink $trackedLinks
* @property mixed $tags
+ * @property Carbon $created_at
+ * @property Carbon $updated_at
* @property string $ref
* @property string $slug
* @property string $absolutePdfPath
'collection' => (string) $this->file->collection,
'ref' => $this->file->ref,
'cover' => $this->file->coverUrl,
+ 'created_at' => $this->file->created_at->format('U'),
],
'content' => $this->content,
'page' => $this->page,