mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-09 21:08:40 +00:00
19 lines
262 B
PHP
19 lines
262 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Pricing;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PricingController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function destroy(Pricing $pricing)
|
|
{
|
|
//
|
|
}
|
|
}
|