fuelphpのモデル命名規則とか使い方とか

DB操作を行うモデルを作成する

<?php
namespace Model
use DB
class Img extends ¥Model

上記モデルを使う側

<?php
use Model\Img;

これで使える。