@extends('admin.layout') @section('content')
{{ __('OfferPrice.OfferPrices') }}
@if (count($offerPrices)) @foreach ($offerPrices as $key => $offerPrice) @endforeach
# {{ __('General.Name') }} {{ __('OfferPrice.Type of Work') }} {{ __('OfferPrice.Phone') }} {{ __('OfferPrice.Email') }} {{ __('General.created') }} {{ __('General.Options') }}
{{ $key + 1 + ($offerPrices->currentPage() - 1) * $offerPrices->perPage() }} {{ $offerPrice->name }} @if ($offerPrice->viewd == 0) {{ __('OfferPrice.New') }} @endif {{ $offerPrice->type_of_work }} {{ $offerPrice->phone }} {{ $offerPrice->email }} {{ $offerPrice->created_at }}
@else {{ __('General.No Data Avalible') }} @endif {{ $offerPrices->links() }}
@endsection