This blog on Laravel restful APIS.
Example we have a database table called tags.
CREATE TABLE `tags` ( `id` int(11) NOT NULL, `name` varchar(25) DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `status` tinyint(2) DEFAULT NULL )
Now we need routing to create bread. BREAD stands for Browse Read Edit Add and delete.
Continue reading “Laravel RESTful API”