@extends('layouts.dashboard') @section('title', 'Manage Media') @section('myJS') @endsection @section('content')






@foreach($imageList as $image)

{{ $image->ImageName }}
@endforeach
Showing {{($imageList->currentpage()-1)*$imageList->perpage()+1}} to {{$imageList->currentpage()*$imageList->perpage()}} of {{$imageList->total()}} entries
@include('dashboard.paginator', ['paginator' => $imageList])
@if(count($newDropboxImages))
New images found
@foreach($newDropboxImages as $image) @endforeach
@endif
Add new images
@csrf



@foreach($ImageLabels as $imagelabel) @endforeach
Image Label ID Image Label Name Operations
{{$imagelabel->ImageLabelID}} {{$imagelabel->ImageLabelName}}
|



@foreach($ImageSizes as $imagesize) @endforeach
ImageSize ID Width Height Operations
{{$imagesize->ImageSizeID}} {{$imagesize->Width}} {{$imagesize->Height}}
@if($imagesize->ImageSizeIsDefault != "1") @endif

Image Sources

Dropbox
Integrate Dropbox
@endsection