I\'ve install FPDF on Laravel 4.
I use this code to try FPDF but the functions Header() and Footer() don\'t work
Header()
Footer()
class PDF
Write a new class which extends FPDF and put your Header & Footer methods in there.
class PDF extends FPDF { function Header() {} function Footer() {} }
Then in your controller...
new PDF();