@extends('admin/layouts/default') {{-- Page title --}} @section('title') Customer {{ trans('app.manage') }} @parent @stop @section('header_styles') @endsection @section('content')

Customer

View Customer

@foreach ($items as $key => $item) @endforeach
# Name Email Phone Number Company With Watermark Download Actions
# Name Email Phone Number Company With Watermark Download Actions
{{++$key}} {{ $item->fullname }} {{ $item->email }} {{ $item->phone_number }} {{ $item->company_name }} {{config('variables.Yes')[$item->watermark]}}
  • {!! Form::open([ 'class'=>'delete', 'url' => route(ADMIN . '.customer.destroy', $item->id), 'method' => 'DELETE', ]) !!} {!! Form::close() !!}
@endsection @section('footer_scripts') @endsection