Commit 3c8e9a36 by Angel MAS

Agrega tags

parent f4562f66
...@@ -25,6 +25,8 @@ class BlogServiceProvider extends ServiceProvider ...@@ -25,6 +25,8 @@ class BlogServiceProvider extends ServiceProvider
public function register() public function register()
{ {
$this->app->make('Onestartup\Blog\Controller\AdminBlogController'); $this->app->make('Onestartup\Blog\Controller\AdminBlogController');
$this->app->make('Onestartup\Blog\Controller\CategoryController');
$this->app->make('Onestartup\Blog\Controller\TagCatalogController');
$this->loadViewsFrom(__DIR__.'/views', 'blog'); $this->loadViewsFrom(__DIR__.'/views', 'blog');
} }
} }
<?php
namespace Onestartup\Blog\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Blog\Model\EntryTag as TagCatalog;
class TagCatalogController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$tags = TagCatalog::paginate(25);
return view('blog::tags.index')
->with('tags', $tags);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(Request $request)
{
$tag = new TagCatalog($request->all());
$tag->save();
return redirect()
->back()
->with('message_success', 'Categoria añadida correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$tag = TagCatalog::find($id);
return view('blog::tags.edit')
->with('tag', $tag);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(Request $request, $id)
{
$tag = TagCatalog::find($id);
$tag->fill($request->all());
$tag->save();
return redirect()
->back()
->with('message_success', 'Tag actualizado correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$tag = TagCatalog::find($id);
$tag->delete();
return redirect()
->back()
->with('message_danger', 'Tag eliminado correctamente');
}
}
...@@ -8,4 +8,6 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){ ...@@ -8,4 +8,6 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
Route::delete('delete/cover/category/{id}', 'Onestartup\Blog\Controller\CategoryController@deleteCover') Route::delete('delete/cover/category/{id}', 'Onestartup\Blog\Controller\CategoryController@deleteCover')
->name('delete.cover.category'); ->name('delete.cover.category');
Route::resource('admin/blog/tag', 'Onestartup\Blog\Controller\TagCatalogController', ['as'=>'blog.admin']);
}); });
@extends('layouts.admin.admin-layout')
@section('content')
<div class='row'>
<div class='col-md-12'>
<div class='box'>
<div class='box-header dark'>
<h2>Actualizar información</h2>
</div>
<div class='box-body'>
<div class='col-md-12'>
{!! Form::model($tag,['route'=> ['blog.admin.tag.update',$tag->id],"method"=>"PUT", 'enctype'=>'multipart/form-data']) !!}
@include('blog::tags.fields')
</div>
</div>
<div class='dker p-a text-right'>
<div class='col-md-12'>
<a class='btn danger' href="{{route('blog.admin.tag.index')}}">Cancelar</a>
{!! Form::submit('Actualizar información', ['class'=>'btn dark']) !!}
{!! Form::close() !!}
</div>
</div>
</div>
</div>
</div>
@endsection
\ No newline at end of file
<div class="form-group">
{!! Form::label('description', 'Descripción *') !!}
{!! Form::text('description', null, ["class"=>"form-control", "required"=>"required", "placeholder"=>"Coloque aquí el nombre del tag"]) !!}
</div>
@extends('layouts.admin.admin-layout')
@section('content')
<div class='row'>
<div class='col-md-12 collapse' id='agregarTag'>
<div class='box'>
<div class='box-header dark'>
<h2>
Agregar nuevo tag
<span></span>
<a aria-expanded='false' class='btn btn-xs btn-danger button-ml' data-toggle='collapse' href='#agregarTag'>
Cancelar
</a>
</h2>
</div>
<div class='box-body'>
<div class='col-md-6 offset-3'>
{!! Form::open(['route'=> 'blog.admin.tag.store','method'=>'POST']) !!}
@include('blog::tags.fields')
<br>
<div class='form-group'>
<button class='btn btn-primary' type='submit'>
Registrar
</button>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</div>
<div class='col-md-12'>
<div class='box'>
<div class='box-header dark'>
<h2>
Listado de tags
<span>
<a aria-expanded='false' class='btn btn-xs btn-info button-ml' data-toggle='collapse' href='#agregarTag'>
<i class='fas fa-plus'></i>
Agregar tags
</a>
</span>
</h2>
</div>
<div class='box-body'>
<div class='col-md-12'>
<table class='table'>
<tr>
<th>#</th>
<th>Tag</th>
<th></th>
</tr>
@foreach ($tags as $tag)
<tr>
<td> {{$tag->id}}</td>
<td> {{$tag->description}}</td>
<td>
{!! Form::open(['route'=> ['blog.admin.tag.destroy',$tag->id],'method'=>'DELETE'])!!}
<button class='btn btn-danger btn-xs button-mb' onclick="return confirm('¿Estás seguro de eliminar este elemento?');" type='submit'>
<i class='fas fa-trash-alt icon-special-size'></i>
Eliminar
</button>
{!! Form::close()!!}
<a class='btn btn-xs accent' href="{{route('blog.admin.tag.edit', $tag->id)}}">
<i class='fas fa-edit icon-special-size'></i>
Editar
</a>
</td>
@endforeach
</tr>
</table>
</div>
</div>
<div class='dker p-a text-right'>
{{ $tags->links() }}
</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