Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 7 |
CRAP | |
0.00% |
0 / 1 |
| ShippingController | |
0.00% |
0 / 7 |
|
0.00% |
0 / 7 |
56 | |
0.00% |
0 / 1 |
| index | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| create | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| store | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| show | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| edit | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| update | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| destroy | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Http\Controllers; |
| 4 | |
| 5 | use App\Models\Shipping; |
| 6 | use Illuminate\Http\Request; |
| 7 | use Illuminate\Http\Response; |
| 8 | |
| 9 | class ShippingController extends Controller |
| 10 | { |
| 11 | /** |
| 12 | * Display a listing of the resource. |
| 13 | * |
| 14 | * @return Response |
| 15 | */ |
| 16 | public function index() |
| 17 | { |
| 18 | // |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Show the form for creating a new resource. |
| 23 | * |
| 24 | * @return Response |
| 25 | */ |
| 26 | public function create() |
| 27 | { |
| 28 | // |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Store a newly created resource in storage. |
| 33 | * |
| 34 | * @return Response |
| 35 | */ |
| 36 | public function store(Request $request) |
| 37 | { |
| 38 | // |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Display the specified resource. |
| 43 | * |
| 44 | * @return Response |
| 45 | */ |
| 46 | public function show(Shipping $shipping) |
| 47 | { |
| 48 | // |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Show the form for editing the specified resource. |
| 53 | * |
| 54 | * @return Response |
| 55 | */ |
| 56 | public function edit(Shipping $shipping) |
| 57 | { |
| 58 | // |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Update the specified resource in storage. |
| 63 | * |
| 64 | * @return Response |
| 65 | */ |
| 66 | public function update(Request $request, Shipping $shipping) |
| 67 | { |
| 68 | // |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Remove the specified resource from storage. |
| 73 | * |
| 74 | * @return Response |
| 75 | */ |
| 76 | public function destroy(Shipping $shipping) |
| 77 | { |
| 78 | // |
| 79 | } |
| 80 | } |