@extends('layouts.admin') @section('header','Models') @section('breadcrumbs')
  • Home
  • Models
  • @stop @section('content')
    @include('messages')
    @if(count($three_ds))
    @foreach ($three_ds as $three_d) @endforeach
    Name Updated At
    {{ $three_d->name }} {{ date('d-m-Y H:i:s',strtotime($three_d->updated_at)) }}
    @else

    Please create a new model by clicking HERE

    @endif
    @stop