97 lines
3.7 KiB
PHP
Executable File
97 lines
3.7 KiB
PHP
Executable File
@extends('layouts.master')
|
|
@section('page_title')
|
|
@if(isset($page_title))
|
|
{{ $page_title }}
|
|
@endif
|
|
@endsection
|
|
|
|
@section('css')
|
|
<link href="{!! url('public/assets/css/report.css') !!}" type="text/css" rel="stylesheet">
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
|
<div class="content">
|
|
<div class="page-title">
|
|
<div class="title_left" style="width:800px !important;">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{!! url('dashboard') !!}">Dashboard</a></li>
|
|
<li class="active">Marketing Report</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<a href="{!! url('marketreport') !!}" style="float: right; color: white" class="btn btn-info">
|
|
<i class="fa fa-chevron-left"></i>
|
|
Back
|
|
</a>
|
|
|
|
<main class="content-area" style="margin: 0px;">
|
|
<section rel="report">
|
|
<div class="web">
|
|
<aside>
|
|
<div class="block aside time">
|
|
<div class="bit status">
|
|
<h6>Client</h6>
|
|
<h5>{{$market_report->client_info->name}}</h5>
|
|
</div>
|
|
<div class="bit start-time">
|
|
<h6>Contact Person</h6>
|
|
<h5>{{$market_report->contact_person}}</h5>
|
|
</div>
|
|
<div class="bit end-time">
|
|
<h6>Service</h6>
|
|
<h5>{{$market_report->service}}</h5>
|
|
</div>
|
|
</div>
|
|
<div class="block aside links">
|
|
<div class="bit details">
|
|
<h5>Last Follow Up Date: <a>{{$market_report->last_follow_up_date}}</a></h5>
|
|
</div>
|
|
<div class="bit contact">
|
|
<h5>Next Follow Up Date: <a>{{$market_report->next_follow_up_date}}</a></h5>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
<summary>
|
|
<div class="block summary notification">
|
|
<div class="bit service grey">
|
|
<span>
|
|
<h5>Marketers Report</h5>
|
|
</span>
|
|
</div>
|
|
<div class="bit audience">
|
|
<h6>Email</h6>
|
|
<h5>{{$market_report->email}}</h5>
|
|
</div>
|
|
</div>
|
|
<div class="block summary resolution">
|
|
<div class="bit resolution-summary">
|
|
<h6>Discussion</h6>
|
|
<p>{{$market_report->discussion}}</p>
|
|
</div>
|
|
</div>
|
|
<div class="block summary details">
|
|
<div class="bit summary">
|
|
<h6>Sam Comment</h6>
|
|
<p>{{$market_report->sam_comment}}</p>
|
|
<br />
|
|
</div>
|
|
<div class="bit workaround">
|
|
<p><strong>Payment Type</strong></p>
|
|
<ul>
|
|
<li>{{$market_report->payment_info->name}}</li>
|
|
</ul>
|
|
<p><strong>Current Balance</strong></p>
|
|
<ul>
|
|
<li>{{$market_report->current_balance}}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</summary>
|
|
</div>
|
|
<div class="mobile"></div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
@endsection |