@extends('layouts.admin.app') @section('content')
@if( Session::get('permissions.user_type') == 'A' || Session::get('permissions.user_type') == 'SA')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }}

@endif @endforeach
Testimonial Management
@if(count($result) > 0)
@php $i=1; @endphp @foreach($result as $key => $data) @if ($data->type == "F") @else @endif @endforeach
# Site Coupon Code Discount Type Discount Amount Start Date End Date Created Status Action
{{ $i + $key }} {{$site->site_name}} {{$data->coupon_code}}FlatPercent{{$data->amount}} {{$data->start_date}} {{$data->end_date}} {{date('d-m-Y', strtotime($data->created_at))}}
@else
No Data Found...
@endif
@endif
@endsection