Test Failed
Push — master ( 6cd9b3...9edbfe )
by Gianluca
08:33
created

ShopShipmentController::page()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
1
<?php
2
namespace Mongi\Mongicommerce\Http\Controllers\shop;
3
4
use Illuminate\Http\Request;
5
use Illuminate\Support\Facades\Auth;
6
use Mongi\Mongicommerce\Http\Controllers\Controller;
7
use Mongi\Mongicommerce\Models\Cart;
8
use Mongi\Mongicommerce\Models\ProductItem;
9
10
11
class ShopShipmentController extends Controller
12
{
13
    public function page(){
14
            return view('mongicommerce.pages.shipment');
15
    }
16
}
17