Commit 31a56d91 by Angel MAS

seguimiento de registro agregado

parent 839749fc
......@@ -12,6 +12,24 @@ composer require onestartup/crm
```php
Onestartup\Crm\CrmListServiceProvider::class,
````
- Run migration
```php
php artisan migrate
```
- add next lines to app/User.php
```php
public function tracings()
{
return $this->hasMany('Onestartup\Crm\Tracing', 'user_id');
}
```
- add next lines to app/Interested.php
```php
public function tracings()
{
return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id');
}
```
- run serv
```php
php artisan serve
......
......@@ -7,6 +7,7 @@ use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use App\Interested;
use Onestartup\Crm\Tracing;
class AdminCrmController extends Controller
{
......@@ -35,4 +36,17 @@ class AdminCrmController extends Controller
return view('crm::show')
->with('interested', $interested);
}
public function storeTracing(Request $request, $id)
{
$interested = Interested::find($id);
$comment = new Tracing($request->all());
$comment->user_id = \Auth::user()->id;
$interested->tracings()->save($comment);
return redirect()
->back()
->with('message_success', 'Información agregada correctamente');
}
}
......@@ -14,6 +14,7 @@ class CrmListServiceProvider extends ServiceProvider
public function boot()
{
include __DIR__.'/routes.php';
$this->loadMigrationsFrom(__DIR__.'/migrations');
}
/**
......
<?php
namespace Onestartup\Crm;
use Illuminate\Database\Eloquent\Model;
class Tracing extends Model
{
protected $table = 'tracings';
protected $fillable = [
'type',
'detail',
'interested_id',
'user_id'
];
public function user()
{
return $this->belongsTo('App\User', 'user_id');
}
public function interested()
{
return $this->belongsTo('App\Interested', 'interested_id');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTracingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tracings', function (Blueprint $table) {
$table->increments('id');
$table->string('type', 355);
$table->string('detail', 555);
$table->integer('interested_id')->unsigned();
$table->foreign('interested_id')->references('id')->on('interesteds');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tracings');
}
}
......@@ -5,5 +5,5 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
Route::get('admin/crm','Onestartup\Crm\AdminCrmController@list')->name('crm.list');
Route::get('admin/crm/datatable','Onestartup\Crm\AdminCrmController@datatable')->name('crm.datatable');
Route::get('admin/crm/{id}/show','Onestartup\Crm\AdminCrmController@show')->name('crm.show');
Route::post('admin/crm/{id}/tracing/store','Onestartup\Crm\AdminCrmController@storeTracing')->name('crm.tracing.store');
});
@include('partials.messages_partial')
{!! Form::open(['route'=> ['crm.tracing.store', $interested->id],"method"=>"POST"]) !!}
<div class="form-group">
{!! Form::label('type', 'Tipo', ['class'=>'form-control-label']) !!}
{!! Form::select('type', ['Llamada'=>'Llamada','WhatsApp'=>'WhatsApp','SMS'=>'SMS','Email'=>'Email','Comentarios'=>'Comentarios'], null, ['class' => 'form-control select2', 'required'=>'required']) !!}
</div>
<div class="form-group">
{!! Form::label('detail', 'Detalle', ['class'=>'form-control-label']) !!}
{!! Form::text('detail', null, ['class' => 'form-control', 'required'=>'required']) !!}
</div>
<br>
{!! Form::submit('Agregar', ['class'=>'btn btn-danger btn-block']) !!}
{!! Form::close() !!}
......@@ -41,6 +41,63 @@
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 offset-1">
<div class="box">
<div class="box-header dark">
<b>Bitacora de seguimiento</b>
<span>
<a class="btn btn-sm btn-default" data-target="#m-a-a" data-toggle="modal" href="#" ui-target="#animate" ui-toggle-class="zoom">
Agregar seguimiento
</a>
</span>
</div>
<div class="box-body">
@if($interested->tracings()->count() > 0)
<ul class="timeline">
@foreach( $interested->tracings as $comment)
<li class="tl-item">
<div class="tl-wrap b-primary">
<span class="tl-date text-muted">{{$comment->created_at}}</span>
<div class="tl-content box-color text-color w-xl w-auto-xs">
<span class="arrow b-white left pull-top"></span>
<div class="text-lt p-x m-b-sm">
{{$comment->type}}
</div>
<div class="p-a b-t b-light">
{{$comment->detail}}
</div>
</div>
</div>
</li>
@endforeach
</ul>
@else
<p>No se han agregado registros</p>
@endif
</div>
</div>
</div>
</div>
</div>
<div class="modal fade animate" data-backdrop="true" id="m-a-a">
<div class="modal-dialog" id="animate">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar seguimiento</h5>
</div>
<div class="modal-body text-center p-lg">
@include('crm::form-bitacora')
</div>
</div>
</div>
</div>
@endsection
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment