%PDF- %PDF-
Direktori : /var/www/html/digiprint/resources/views/dashboard/ |
Current File : /var/www/html/digiprint/resources/views/dashboard/technologies.blade.php |
@extends('dashboard.layouts.app') @section('content') <div class="container"> <div class="row"> <div class="col-md-12"> <div class="panel panel-default"> <div class="panel-heading"> <h1> <span>Technologies</span> <a class="btn btn-success pull-right" href="{{route('dashboard.technologies.details', 'new')}}"> Create </a> </h1> </div> </div> <table class="table table-responsive"> <thead> <th>Name</th> <th>Description</th> <th class="text-right">Actions</th> </thead> <tbody> @foreach($technologies as $technology) <tr> <td>{{$technology->name}}</td> <td>{{$technology->description}}</td> <td class="text-right"> <a class="btn btn-warning" href="{{route('dashboard.technologies.details', $technology->id)}}">Edit</a> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> @endsection