CouponController.php 729 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use App\Models\Coupon;
  5. class CouponController extends Controller
  6. {
  7. public function check (Request $request) {
  8. if (empty($request->input('code'))) {
  9. abort(500, '优惠券码不能为空');
  10. }
  11. $coupon = Coupon::where('code', $request->input('code'))->first();
  12. if (!$coupon) {
  13. abort(500, '优惠券无效');
  14. }
  15. if (time() < $coupon->started_at) {
  16. abort(500, '优惠券还未到可用时间');
  17. }
  18. if (time() > $coupon->ended_at) {
  19. abort(500, '优惠券已过期');
  20. }
  21. return response([
  22. 'data' => $coupon
  23. ]);
  24. }
  25. }