JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('SMS') }} @endsection @section('title') {{ __('SMS') }} @endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
@foreach ($smsData as $sms) @endforeach
{{ __('#') }} {{ __('Name') }} {{ __('Link') }} {{ __('Status') }} {{ __('Created On') }} {{ __('Action') }}
{{ $loop->index + 1 }} {{ ucFirst($sms->name) }} slug) }} target="_blank"> {{ url('/sms-qr/' .$sms->slug) }} {{$sms->slug }} {{$sms->is_enable == 1 ? 'Active' : 'Lock' }} {{ date_format($sms->created_at, 'd-m-Y') }}
{!! Form::open([ 'method' => 'POST', 'route' => ['sms-qr.duplicate',$sms->id], 'id' => 'duplicate-form-' .$sms->id, ]) !!} {!! Form::close() !!}
{!! Form::open([ 'method' => 'DELETE', 'route' => ['sms.destroy',$sms->id], 'id' => 'delete-form-' .$sms->id, ]) !!} {!! Form::close() !!}
@endsection @push('custom-scripts') @endpush