@extends('admin.layouts.master')
@section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
| Id |
Title |
Category |
Created At |
Views |
Action |
@forelse($discounts as $discount)
| {{ $discount->id }} |
{{ $discount->title }} |
{{ $discount->category->name }} |
{{ $discount->created_at->format('d M Y') }} |
{{ $discount->views }} |
|
@empty
@endforelse
@endsection